Browse Source

GHA CI: Don't cancel CI builds on non-pull-request branches

Fix up 2652c73a4f.
PR #16558.
adaptive-webui-19844
Chocobo1 3 years ago committed by GitHub
parent
commit
116664285d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/ci_file_health.yaml
  2. 2
      .github/workflows/ci_macos.yaml
  3. 2
      .github/workflows/ci_ubuntu.yaml
  4. 2
      .github/workflows/ci_webui.yaml
  5. 2
      .github/workflows/ci_windows.yaml

2
.github/workflows/ci_file_health.yaml

@ -3,7 +3,7 @@ name: CI - File health @@ -3,7 +3,7 @@ name: CI - File health
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:

2
.github/workflows/ci_macos.yaml

@ -3,7 +3,7 @@ name: CI - macOS @@ -3,7 +3,7 @@ name: CI - macOS
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:

2
.github/workflows/ci_ubuntu.yaml

@ -3,7 +3,7 @@ name: CI - Ubuntu @@ -3,7 +3,7 @@ name: CI - Ubuntu
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:

2
.github/workflows/ci_webui.yaml

@ -3,7 +3,7 @@ name: CI - WebUI @@ -3,7 +3,7 @@ name: CI - WebUI
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:

2
.github/workflows/ci_windows.yaml

@ -3,7 +3,7 @@ name: CI - Windows @@ -3,7 +3,7 @@ name: CI - Windows
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.head_ref != '' }}
jobs:

Loading…
Cancel
Save