diff --git a/.github/workflows/humble-abi-compatibility.yml b/.github/workflows/humble-abi-compatibility.yml index dc78e8f073..6cfd2c6068 100644 --- a/.github/workflows/humble-abi-compatibility.yml +++ b/.github/workflows/humble-abi-compatibility.yml @@ -18,7 +18,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: abi_check: diff --git a/.github/workflows/humble-binary-build.yml b/.github/workflows/humble-binary-build.yml index 6372e918b5..f013f18880 100644 --- a/.github/workflows/humble-binary-build.yml +++ b/.github/workflows/humble-binary-build.yml @@ -37,7 +37,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: binary: diff --git a/.github/workflows/humble-coverage-build.yml b/.github/workflows/humble-coverage-build.yml index 54384bb9f0..40d1de7052 100644 --- a/.github/workflows/humble-coverage-build.yml +++ b/.github/workflows/humble-coverage-build.yml @@ -33,7 +33,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: coverage_humble: diff --git a/.github/workflows/humble-debian-build.yml b/.github/workflows/humble-debian-build.yml index c6204729cb..e52ffe6842 100644 --- a/.github/workflows/humble-debian-build.yml +++ b/.github/workflows/humble-debian-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: humble_debian: diff --git a/.github/workflows/humble-rhel-semi-binary-build.yml b/.github/workflows/humble-rhel-semi-binary-build.yml index 3b2ba40179..6019d08e46 100644 --- a/.github/workflows/humble-rhel-semi-binary-build.yml +++ b/.github/workflows/humble-rhel-semi-binary-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: humble_rhel_binary: diff --git a/.github/workflows/humble-semi-binary-build.yml b/.github/workflows/humble-semi-binary-build.yml index 8be0d8d145..2d0437782b 100644 --- a/.github/workflows/humble-semi-binary-build.yml +++ b/.github/workflows/humble-semi-binary-build.yml @@ -36,7 +36,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on humble branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'humble' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: semi_binary: diff --git a/.github/workflows/jazzy-abi-compatibility.yml b/.github/workflows/jazzy-abi-compatibility.yml index 00b2eef010..5da5fb9d00 100644 --- a/.github/workflows/jazzy-abi-compatibility.yml +++ b/.github/workflows/jazzy-abi-compatibility.yml @@ -17,7 +17,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: abi_check: diff --git a/.github/workflows/jazzy-binary-build.yml b/.github/workflows/jazzy-binary-build.yml index 83799acc67..7dd294a55b 100644 --- a/.github/workflows/jazzy-binary-build.yml +++ b/.github/workflows/jazzy-binary-build.yml @@ -38,7 +38,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: binary: diff --git a/.github/workflows/jazzy-coverage-build.yml b/.github/workflows/jazzy-coverage-build.yml index 3cec3883b2..2f587c7003 100644 --- a/.github/workflows/jazzy-coverage-build.yml +++ b/.github/workflows/jazzy-coverage-build.yml @@ -36,7 +36,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: coverage_jazzy: diff --git a/.github/workflows/jazzy-debian-build.yml b/.github/workflows/jazzy-debian-build.yml index 620877c1ea..b1a60f1528 100644 --- a/.github/workflows/jazzy-debian-build.yml +++ b/.github/workflows/jazzy-debian-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: jazzy_debian: diff --git a/.github/workflows/jazzy-rhel-semi-binary-build.yml b/.github/workflows/jazzy-rhel-semi-binary-build.yml index dba2955cb1..f39c9cc570 100644 --- a/.github/workflows/jazzy-rhel-semi-binary-build.yml +++ b/.github/workflows/jazzy-rhel-semi-binary-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: jazzy_rhel: diff --git a/.github/workflows/jazzy-semi-binary-build.yml b/.github/workflows/jazzy-semi-binary-build.yml index fcf1346f26..e38fd5b7ba 100644 --- a/.github/workflows/jazzy-semi-binary-build.yml +++ b/.github/workflows/jazzy-semi-binary-build.yml @@ -38,7 +38,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: semi_binary: diff --git a/.github/workflows/rolling-abi-compatibility.yml b/.github/workflows/rolling-abi-compatibility.yml index dc0717c832..1f0ec61d40 100644 --- a/.github/workflows/rolling-abi-compatibility.yml +++ b/.github/workflows/rolling-abi-compatibility.yml @@ -17,7 +17,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: abi_check: diff --git a/.github/workflows/rolling-binary-build.yml b/.github/workflows/rolling-binary-build.yml index d806b91c4e..a3686144f3 100644 --- a/.github/workflows/rolling-binary-build.yml +++ b/.github/workflows/rolling-binary-build.yml @@ -39,7 +39,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: binary: diff --git a/.github/workflows/rolling-compatibility-humble-binary-build.yml b/.github/workflows/rolling-compatibility-humble-binary-build.yml index 9b01c21f01..6370db30d1 100644 --- a/.github/workflows/rolling-compatibility-humble-binary-build.yml +++ b/.github/workflows/rolling-compatibility-humble-binary-build.yml @@ -36,7 +36,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: build-on-humble: diff --git a/.github/workflows/rolling-compatibility-jazzy-binary-build.yml b/.github/workflows/rolling-compatibility-jazzy-binary-build.yml index de78374f0b..4da98f2d09 100644 --- a/.github/workflows/rolling-compatibility-jazzy-binary-build.yml +++ b/.github/workflows/rolling-compatibility-jazzy-binary-build.yml @@ -36,7 +36,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: build-on-jazzy: diff --git a/.github/workflows/rolling-coverage-build.yml b/.github/workflows/rolling-coverage-build.yml index ff5c006d52..abea8a90db 100644 --- a/.github/workflows/rolling-coverage-build.yml +++ b/.github/workflows/rolling-coverage-build.yml @@ -33,7 +33,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: coverage_rolling: diff --git a/.github/workflows/rolling-debian-build.yml b/.github/workflows/rolling-debian-build.yml index e2ef234810..8f9394762b 100644 --- a/.github/workflows/rolling-debian-build.yml +++ b/.github/workflows/rolling-debian-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: rolling_debian: diff --git a/.github/workflows/rolling-rhel-semi-binary-build.yml b/.github/workflows/rolling-rhel-semi-binary-build.yml index d821b9323a..0f03ad02c2 100644 --- a/.github/workflows/rolling-rhel-semi-binary-build.yml +++ b/.github/workflows/rolling-rhel-semi-binary-build.yml @@ -21,7 +21,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: rolling_rhel: diff --git a/.github/workflows/rolling-semi-binary-build.yml b/.github/workflows/rolling-semi-binary-build.yml index 7de1f42bb3..06f4c55612 100644 --- a/.github/workflows/rolling-semi-binary-build.yml +++ b/.github/workflows/rolling-semi-binary-build.yml @@ -38,7 +38,7 @@ on: concurrency: # cancel previous runs of the same workflow, except for pushes on master branch group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'master' }} + cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} jobs: semi_binary: