File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 44 pull_request :
55 push :
66
7+ # When a PR is updated, cancel the jobs from the previous version. Merges
8+ # do not define head_ref, so use run_id to never cancel those jobs.
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
11+ cancel-in-progress : true
12+
713jobs :
814 build-wheels :
915 timeout-minutes : 15
Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ name: Publish to PyPI
33on :
44 workflow_dispatch :
55
6+ # When a PR is updated, cancel the jobs from the previous version. Merges
7+ # do not define head_ref, so use run_id to never cancel those jobs.
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
10+ cancel-in-progress : true
11+
612jobs :
713 publish-pypi :
814 if : github.repository == 'opendatacube/odc-geo'
You can’t perform that action at this time.
0 commit comments