From 752fd3b1c182eb17de24401c2db192ba40ec8bc1 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Thu, 31 Jul 2025 11:56:25 -0700 Subject: [PATCH] fix(ci): use single quotes please --- .github/workflows/integration-tests.yml | 6 +++--- .github/workflows/integration-vision-tests.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index df9a83596..e64d71f98 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -53,9 +53,9 @@ concurrency: jobs: discover-tests: if: | - github.event_name == "push" || - github.event_name == "schedule" || - github.event_name == "workflow_dispatch" || + github.event_name == 'push' || + github.event_name == 'schedule' || + github.event_name == 'workflow_dispatch' || github.event.action == 'opened' || github.event.action == 'synchronize' || (github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests')) diff --git a/.github/workflows/integration-vision-tests.yml b/.github/workflows/integration-vision-tests.yml index c24b33a75..28f11fe94 100644 --- a/.github/workflows/integration-vision-tests.yml +++ b/.github/workflows/integration-vision-tests.yml @@ -45,9 +45,9 @@ concurrency: jobs: discover-tests: if: | - github.event_name == "push" || - github.event_name == "schedule" || - github.event_name == "workflow_dispatch" || + github.event_name == 'push' || + github.event_name == 'schedule' || + github.event_name == 'workflow_dispatch' || github.event.action == 'opened' || github.event.action == 'synchronize' || (github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))