Githubactions - Cancel workflow fix (#1029)

Fix: Cancels the obsolete tasks as desired.
This commit is contained in:
SaW
2025-02-26 18:57:31 +01:00
committed by GitHub
parent c697b81404
commit 20a69db45a
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ on:
branches: [ "master" ] branches: [ "master" ]
concurrency: concurrency:
group: ${{ github.head_ref || github.run_id }} group: "codestyle-${{ github.event.pull_request.number }}"
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:

View File

@@ -7,7 +7,7 @@ on:
branches: [ "master" ] branches: [ "master" ]
concurrency: concurrency:
group: ${{ github.head_ref || github.run_id }} group: "core-build-${{ github.event.pull_request.number }}"
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:

View File

@@ -6,7 +6,7 @@ on:
branches: [ "master" ] branches: [ "master" ]
concurrency: concurrency:
group: ${{ github.head_ref || github.run_id }} group: "macos-build-${{ github.event.pull_request.number }}"
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:

View File

@@ -6,7 +6,7 @@ on:
branches: [ "master" ] branches: [ "master" ]
concurrency: concurrency:
group: ${{ github.head_ref || github.run_id }} group: "windows-build-${{ github.event.pull_request.number }}"
cancel-in-progress: true cancel-in-progress: true
jobs: jobs: