ci: Fix usage of concurrency in branches other than master

pull/10970/head
L. E. Segovia 2 years ago committed by Eli Schwartz
parent 212af2b278
commit 0ddca4d0d0
  1. 2
      .github/workflows/cygwin.yml
  2. 2
      .github/workflows/file_format.yml
  3. 2
      .github/workflows/images.yml
  4. 2
      .github/workflows/lint.yml
  5. 2
      .github/workflows/macos.yml
  6. 2
      .github/workflows/msys2.yml
  7. 2
      .github/workflows/nonative.yml
  8. 2
      .github/workflows/os_comp.yml
  9. 2
      .github/workflows/unusedargs_missingreturn.yml

@ -1,7 +1,7 @@
name: cygwin
concurrency:
group: cygwin-${{ github.head_ref }}
group: cygwin-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -3,7 +3,7 @@ name: File format check
on: [push, pull_request]
concurrency:
group: file_fmt-${{ github.head_ref }}
group: file_fmt-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:

@ -1,7 +1,7 @@
name: CI image builder
concurrency:
group: img_builder-${{ github.head_ref }}
group: img_builder-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -1,7 +1,7 @@
name: Lint
concurrency:
group: lint-${{ github.head_ref }}
group: lint-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -1,7 +1,7 @@
name: macos
concurrency:
group: macos-${{ github.head_ref }}
group: macos-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -1,7 +1,7 @@
name: msys2
concurrency:
group: msys2-${{ github.head_ref }}
group: msys2-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -1,7 +1,7 @@
name: Cross-only compilation environment
concurrency:
group: nonative-${{ github.head_ref }}
group: nonative-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -1,7 +1,7 @@
name: linux
concurrency:
group: linux-${{ github.head_ref }}
group: linux-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

@ -10,7 +10,7 @@ env:
FFLAGS: "-fimplicit-none"
concurrency:
group: unusedargs-${{ github.head_ref }}
group: unusedargs-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:

Loading…
Cancel
Save