From 5ba25efd5415d7a096acd8fd3c24c342b72820ff Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Thu, 31 Jul 2025 11:54:51 -0700 Subject: [PATCH] fix(ci): ensure workflow runs when manually run or scheduled --- .github/workflows/integration-tests.yml | 3 +++ .github/workflows/integration-vision-tests.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index d80fbc525..df9a83596 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -53,6 +53,9 @@ concurrency: jobs: discover-tests: if: | + 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 38da333c2..c24b33a75 100644 --- a/.github/workflows/integration-vision-tests.yml +++ b/.github/workflows/integration-vision-tests.yml @@ -45,6 +45,9 @@ concurrency: jobs: discover-tests: if: | + 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'))