Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-system-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Include manual master runs in the predicate

When this workflow is launched manually from master, .github/workflows/run-system-tests.yaml still has github.event_name == 'workflow_dispatch', so this expression evaluates to true and the reusable system-tests workflow continues skipping empty scenarios. That leaves the documented/manual master path without the new coverage intended for master runs; include a github.ref/github.ref_name check or otherwise treat workflow_dispatch on master like the push/schedule cases.

Useful? React with 👍 / 👎.

push_to_test_optimization: true
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down
Loading