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 1d6ee6a commit ca89c33Copy full SHA for ca89c33
.github/workflows/ci.yml
@@ -5,7 +5,11 @@ on:
5
branches:
6
- main
7
pull_request:
8
-
+# Cancel in progress workflows
9
+# in the scenario where we already had a run going for that PR/branch/tag but then triggered a new run
10
+concurrency:
11
+ group: "${{ github.workflow }} ✨ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
12
+ cancel-in-progress: true
13
permissions:
14
contents: read
15
0 commit comments