From 9b0e5dc028b88a7911358b3a60ce3ac9e98b8fcb Mon Sep 17 00:00:00 2001 From: Nicolas Catoni Date: Wed, 22 Apr 2026 18:26:04 +0200 Subject: [PATCH] Run all system-tests scenario even if empty when running on master/schedule --- .github/workflows/run-system-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-system-tests.yaml b/.github/workflows/run-system-tests.yaml index 861d6c9bf7d..2c441f495de 100644 --- a/.github/workflows/run-system-tests.yaml +++ b/.github/workflows/run-system-tests.yaml @@ -75,7 +75,7 @@ jobs: desired_execution_time: 900 # 15 minutes scenarios_groups: tracer-release excluded_scenarios: APM_TRACING_E2E_OTEL,APM_TRACING_E2E_SINGLE_SPAN,PROFILING # exclude flaky scenarios - skip_empty_scenarios: true + skip_empty_scenarios: ${{ github.event_name != 'push' && github.event_name != 'schedule' }} push_to_test_optimization: true secrets: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}