File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 7
7
# Allow manually triggering the workflow.
8
8
workflow_dispatch :
9
9
10
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
11
+ concurrency :
12
+ # The concurrency group contains the workflow name and the branch name.
13
+ group : ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress : true
15
+
10
16
jobs :
11
17
bundle :
12
18
# Don't run on forks.
Original file line number Diff line number Diff line change 9
9
# Allow manually triggering the workflow.
10
10
workflow_dispatch :
11
11
12
+ # Cancels all previous workflow runs for the same branch that have not yet completed.
13
+ concurrency :
14
+ # The concurrency group contains the workflow name and the branch name.
15
+ group : ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress : true
17
+
12
18
jobs :
13
19
lint :
14
20
name : Run style linter
You can’t perform that action at this time.
0 commit comments