mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
chore(devops): Fix GH overriding main branch statuses (#4639)
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -19,8 +19,8 @@ env:
|
||||
|
||||
# Cancel old workflow runs if new code is pushed
|
||||
concurrency:
|
||||
group: "ci-${{ github.workflow }}-${{ github.ref }}"
|
||||
cancel-in-progress: true
|
||||
group: "ci-${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }}"
|
||||
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
|
||||
|
||||
jobs:
|
||||
kotlin:
|
||||
|
||||
2
.github/workflows/hotfix.yml
vendored
2
.github/workflows/hotfix.yml
vendored
@@ -12,7 +12,7 @@ on:
|
||||
required: false
|
||||
|
||||
concurrency:
|
||||
group: "hotfix-production-${{ github.workflow }}-${{ github.ref }}"
|
||||
group: "hotfix-production-${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }}"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
|
||||
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@@ -10,7 +10,7 @@ env:
|
||||
VERSION: "1.0.0"
|
||||
|
||||
concurrency:
|
||||
group: "cd-production-${{ github.workflow }}-${{ github.ref }}"
|
||||
group: "publish-production-${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }}"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
|
||||
Reference in New Issue
Block a user