File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,19 @@ jobs:
235235 }
236236 }
237237
238+ - name : Write workflow summary
239+ if : always()
240+ uses : actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
241+ with :
242+ script : |
243+ const shouldRun = '${{ steps.check.outputs.should_run }}';
244+ if (shouldRun === 'true') {
245+ core.summary.addRaw('**E2E tests will run** for this trigger.');
246+ } else {
247+ core.summary.addRaw('**E2E tests were skipped** (gate check did not pass for this trigger).');
248+ }
249+ await core.summary.write();
250+
238251 # Build the FMA controller image on GitHub-hosted runner
239252 # Uses ko (Go-native image builder) and pushes to GHCR
240253 # Note: Skip for fork PRs on pull_request event (no secrets access).
You can’t perform that action at this time.
0 commit comments