From bdccadbe06990b3e90694b0570dd17bfc611bd5f Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Wed, 9 Aug 2023 10:20:58 -0400 Subject: [PATCH] fix(playwright.yml): fix condition for running Playwright tests on pull requests The condition for running Playwright tests on pull requests was not properly formatted. The repository name was not enclosed in quotes. This commit fixes the condition by adding single quotes around the repository name. --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index c70aee3eb8..c447409f87 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -13,7 +13,7 @@ on: jobs: tests_e2e: name: Run Playwright tests - if: github.event.pull_request.head.repo.full_name == danny-avila/LibreChat + if: github.event.pull_request.head.repo.full_name == 'danny-avila/LibreChat' timeout-minutes: 60 runs-on: ubuntu-latest env: