Skip to content

Commit d450a30

Browse files
committed
No CI cancelation on master
1 parent 1bf9577 commit d450a30

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/linuxbrew.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: linuxbrew
22
on: [push, pull_request]
33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
5-
cancel-in-progress: true
5+
cancel-in-progress: ${{ github.ref_name != 'master' }}
66
jobs:
77
linuxbrew:
88
runs-on: ubuntu-latest

.github/workflows/macosx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: macOS
22
on: [push, pull_request]
33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
5-
cancel-in-progress: true
5+
cancel-in-progress: ${{ github.ref_name != 'master' }}
66
jobs:
77
macosx:
88
runs-on: macos-latest

.github/workflows/manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: manylinux
22
on: [push, pull_request]
33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
5-
cancel-in-progress: true
5+
cancel-in-progress: ${{ github.ref_name != 'master' }}
66
jobs:
77
manylinux:
88
runs-on: ubuntu-latest

.github/workflows/sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: sdist
22
on: [push, pull_request]
33
concurrency:
44
group: ${{ github.workflow }}-${{ github.ref }}
5-
cancel-in-progress: true
5+
cancel-in-progress: ${{ github.ref_name != 'master' }}
66
jobs:
77
sdist:
88
# Avoid Ubuntu 24.04 in sdist workflows, because it contains libxmlsec1-dev

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
concurrency:
1919
group: ${{ github.workflow }}-${{ github.ref }}
20-
cancel-in-progress: true
20+
cancel-in-progress: ${{ github.ref_name != 'master' }}
2121

2222
permissions: {}
2323

0 commit comments

Comments
 (0)