We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab622af commit 85d6be8Copy full SHA for 85d6be8
1 file changed
.github/workflows/pull.yml
@@ -8,6 +8,13 @@ permissions:
8
on:
9
pull_request:
10
11
+# Concurrency control helps free up runners faster and speed up development.
12
+# When new commits are pushed in PR, the previous workflow run is cancelled.
13
+# If you want to not cancel previous workflow then remove this in you PR temporarily. Before merging to main add it back.
14
+concurrency:
15
+ group: ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress: true
17
+
18
jobs:
19
getVersion:
20
permissions:
0 commit comments