We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6a265 commit 8a90cbcCopy full SHA for 8a90cbc
1 file changed
.github/workflows/ci.yml
@@ -7,6 +7,13 @@ on:
7
pull_request:
8
workflow_dispatch:
9
10
+# Auto-cancel in-flight runs when a new push lands on the same ref.
11
+# Tag builds (refs/tags/*) get a unique-per-run group so release runs
12
+# never cancel each other.
13
+concurrency:
14
+ group: ${{ github.workflow }}-${{ startsWith(github.ref, 'refs/tags/') && github.run_id || github.ref }}
15
+ cancel-in-progress: true
16
+
17
env:
18
ROOT: "${{ github.workspace }}"
19
SCRIPTS: "${{ github.workspace }}/.github/scripts"
0 commit comments