File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 schedule :
2121 - cron : ' 42 0 * * *'
2222
23+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
24+ # updates do not pile up queued runs against the shared account-wide
25+ # Actions concurrency pool. Applied only to read-only check workflows
26+ # (no publish/mutation), so cancelling a superseded run is always safe.
27+ concurrency :
28+ group : ${{ github.workflow }}-${{ github.ref }}
29+ cancel-in-progress : true
30+
2331permissions :
2432 contents : read
2533
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 do not pile up queued runs against the shared account-wide
23+ # Actions concurrency pool. Applied only to read-only check workflows
24+ # (no publish/mutation), so cancelling a superseded run is always safe.
25+ concurrency :
26+ group : ${{ github.workflow }}-${{ github.ref }}
27+ cancel-in-progress : true
28+
2129permissions :
2230 contents : read
2331
Original file line number Diff line number Diff line change 99 - cron : ' 0 6 * * 1' # Weekly on Monday
1010 workflow_dispatch :
1111
12+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
13+ # updates do not pile up queued runs against the shared account-wide
14+ # Actions concurrency pool. Applied only to read-only check workflows
15+ # (no publish/mutation), so cancelling a superseded run is always safe.
16+ concurrency :
17+ group : ${{ github.workflow }}-${{ github.ref }}
18+ cancel-in-progress : true
19+
1220permissions :
1321 contents : read
1422
Original file line number Diff line number Diff line change 66 schedule :
77 - cron : ' 0 4 * * *'
88
9+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
10+ # updates do not pile up queued runs against the shared account-wide
11+ # Actions concurrency pool. Applied only to read-only check workflows
12+ # (no publish/mutation), so cancelling a superseded run is always safe.
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
917permissions :
1018 contents : read
1119
Original file line number Diff line number Diff line change 77 push :
88 branches : [main]
99
10+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
11+ # updates do not pile up queued runs against the shared account-wide
12+ # Actions concurrency pool. Applied only to read-only check workflows
13+ # (no publish/mutation), so cancelling a superseded run is always safe.
14+ concurrency :
15+ group : ${{ github.workflow }}-${{ github.ref }}
16+ cancel-in-progress : true
17+
1018permissions :
1119 contents : read
1220
7078 if [ $found -eq 1 ]; then
7179 echo "::error::Potential hardcoded secrets detected. Use environment variables instead."
7280 exit 1
73- fi
81+ fi
You can’t perform that action at this time.
0 commit comments