File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: linuxbrew
22on : [push, pull_request]
33concurrency :
44 group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 linuxbrew :
88 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: macOS
22on : [push, pull_request]
33concurrency :
44 group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 macosx :
88 runs-on : macos-latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: manylinux
22on : [push, pull_request]
33concurrency :
44 group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 manylinux :
88 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: sdist
22on : [push, pull_request]
33concurrency :
44 group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 sdist :
88 # Avoid Ubuntu 24.04 in sdist workflows, because it contains libxmlsec1-dev
Original file line number Diff line number Diff line change 1717
1818concurrency :
1919 group : ${{ github.workflow }}-${{ github.ref }}
20- cancel-in-progress : true
20+ cancel-in-progress : ${{ github.ref_name != 'master' }}
2121
2222permissions : {}
2323
You can’t perform that action at this time.
0 commit comments