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.
This commit is contained in:
Danny Avila 2023-08-09 10:20:58 -04:00 committed by Danny Avila
parent 70a56ac04a
commit bdccadbe06

View file

@ -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: