Skip to content

Commit 85e6201

Browse files
authored
chore(ci): run all system-tests scenario even if empty when running on master/sc… (#8067)
* Run all system-tests scenario even if empty when running on master/schedule * ci: gate skip_empty_scenarios on ref instead of event_name Using github.event_name != 'push' also disables scenario skipping for merge-queue pushes (mq-working-branch-master-*). Gate on github.ref != 'refs/heads/master' to only run all scenarios on master.
1 parent 6089c44 commit 85e6201

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/system-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ jobs:
6161
scenarios_groups: tracer-release
6262
excluded_scenarios: APM_TRACING_E2E_OTEL,APM_TRACING_E2E_SINGLE_SPAN # require AWS and datadog credentials
6363
parametric_job_count: 8
64-
skip_empty_scenarios: true
64+
skip_empty_scenarios: ${{ github.ref != 'refs/heads/master' && github.event_name != 'schedule' }}
6565
push_to_test_optimization: ${{ github.actor != 'dependabot[bot]' }}

0 commit comments

Comments
 (0)