Fixes GitHub Workflow Concurrency flag (#7505)
* Do not cancel master workflow.
This commit is contained in:
2
.github/workflows/analysis_codeql.yml
vendored
2
.github/workflows/analysis_codeql.yml
vendored
@@ -3,7 +3,7 @@ name: Analyse servers with CodeQL
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_clang.yml
vendored
2
.github/workflows/build_servers_clang.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers with Clang
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_cmake.yml
vendored
2
.github/workflows/build_servers_cmake.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers with CMake
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_gcc.yml
vendored
2
.github/workflows/build_servers_gcc.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers with GCC
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_modes.yml
vendored
2
.github/workflows/build_servers_modes.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers in Pre-Renewal and Renewal
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_msbuild.yml
vendored
2
.github/workflows/build_servers_msbuild.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers with MSVS
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
@@ -3,7 +3,7 @@ name: Build servers with different packet versions
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/build_servers_vip.yml
vendored
2
.github/workflows/build_servers_vip.yml
vendored
@@ -3,7 +3,7 @@ name: Build servers in VIP mode
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
2
.github/workflows/npc_db_validation.yml
vendored
2
.github/workflows/npc_db_validation.yml
vendored
@@ -6,7 +6,7 @@ name: Validate NPC Scripts and DB Changes
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
Reference in New Issue
Block a user