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 4a87bf8 commit a411eb0Copy full SHA for a411eb0
.github/workflows/validate.yaml
@@ -6,6 +6,13 @@ on:
6
permissions:
7
pull-requests: write
8
9
+# Ensures that multiple validation job runs do not execute concurrently on the same PR.
10
+# If a new run is triggered, any in-progress run for the same group is canceled.
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
16
jobs:
17
multiple-labels:
18
name: 'Check that only one validation label is applied'
0 commit comments