File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 9
9
release :
10
10
types : [published]
11
11
12
+ # Cancels all previous workflow runs for pull requests that have not completed.
13
+ concurrency :
14
+ # The concurrency group contains the workflow name and the branch name for pull requests
15
+ # or the commit hash for any other events.
16
+ group : ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
17
+ cancel-in-progress : true
18
+
12
19
jobs :
13
20
build :
14
21
name : Build source distribution
Original file line number Diff line number Diff line change 8
8
branches :
9
9
- master
10
10
11
+ # Cancels all previous workflow runs for pull requests that have not completed.
12
+ concurrency :
13
+ # The concurrency group contains the workflow name and the branch name for pull requests
14
+ # or the commit hash for any other events.
15
+ group : ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
16
+ cancel-in-progress : true
17
+
11
18
jobs :
12
19
changes :
13
20
name : " Check for changes"
You can’t perform that action at this time.
0 commit comments