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'))