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 e13ecdc commit 7aa71c3Copy full SHA for 7aa71c3
1 file changed
.github/workflows/pull.yml
@@ -4,6 +4,13 @@ name: PR CI
4
on:
5
pull_request:
6
7
+# Concurrency control helps free up runners faster and speed up development.
8
+# When new commits are pushed in PR, the previous workflow run is cancelled.
9
+# If you want to not cancel previous workflow then remove this in you PR temporarily. Before merging to main add it back.
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
permissions:
15
id-token: write
16
contents: read
0 commit comments