Skip to content

Commit 85d6be8

Browse files
chore(ci): add concurrency control (#2265)
1 parent ab622af commit 85d6be8

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/pull.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ permissions:
88
on:
99
pull_request:
1010

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+
1118
jobs:
1219
getVersion:
1320
permissions:

0 commit comments

Comments
 (0)