Skip to content

Commit 1d709aa

Browse files
rickardpwkpark
andauthored
Add concurrency to not waste precious build minutes when modifying PRs frequently. (#1051)
Co-authored-by: wkpark <wkpark@gmail.com>
1 parent 4b232ed commit 1d709aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python-package.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ on:
1515
- 'setup.py'
1616
- 'pyproject.toml'
1717
- 'pytest.ini'
18-
- '**/*.md'
1918
release:
2019
types: [ published ]
2120

21+
concurrency:
22+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
23+
cancel-in-progress: true
24+
2225
jobs:
2326

2427
##

0 commit comments

Comments
 (0)