File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 99 release :
1010 types : [published]
1111
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+
1219jobs :
1320 build :
1421 name : Build source distribution
Original file line number Diff line number Diff line change 88 branches :
99 - master
1010
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+
1118jobs :
1219 changes :
1320 name : " Check for changes"
You can’t perform that action at this time.
0 commit comments