File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44name : Agda
55
66on :
7+ # Direct pushes only on the integration branches. Feature-branch
8+ # validation is fully covered by the pull_request trigger below —
9+ # gating WIP pushes to no-PR branches with a full multi-minute Agda
10+ # build was the dominant self-inflicted load on the shared estate
11+ # Actions concurrency pool, and also double-fired (push + PR) on PR
12+ # branches. No proof coverage is lost: PRs and post-merge main still
13+ # run the full suite.
714 push :
8- branches :
9- - " **"
15+ branches : [main, master]
1016 pull_request :
1117
18+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
19+ # updates don't pile up queued full-suite builds. Safe here — this
20+ # workflow only typechecks (read-only, no publish or mutation).
21+ concurrency :
22+ group : ${{ github.workflow }}-${{ github.ref }}
23+ cancel-in-progress : true
24+
1225permissions : read-all
1326
1427jobs :
Original file line number Diff line number Diff line change 1818 pull_request :
1919 workflow_dispatch :
2020
21+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
22+ # updates don't pile up queued runs. Safe — governance is read-only
23+ # policy linting with no publish or mutation.
24+ concurrency :
25+ group : ${{ github.workflow }}-${{ github.ref }}
26+ cancel-in-progress : true
27+
2128permissions :
2229 contents : read
2330
Original file line number Diff line number Diff line change 77 - cron : ' 0 4 * * *'
88 workflow_dispatch :
99
10+ # Estate guardrail: cancel superseded runs so re-pushes don't pile up
11+ # queued analyses. Safe — Scorecard is read-only supply-chain analysis
12+ # with no publish or mutation (SARIF upload is idempotent).
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
1017permissions :
1118 contents : read
1219
You can’t perform that action at this time.
0 commit comments