We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4813dc2 commit 0ebc693Copy full SHA for 0ebc693
1 file changed
.github/workflows/scorecard.yml
@@ -1,4 +1,4 @@
1
-# SPDX-License-Identifier: PMPL-1.0-or-later
+# SPDX-License-Identifier: PMPL-1.0
2
name: OSSF Scorecard
3
on:
4
push:
@@ -7,6 +7,14 @@ on:
7
- cron: '0 4 * * *'
8
workflow_dispatch:
9
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
+
18
permissions:
19
contents: read
20
0 commit comments