mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-27 23:54:07 +02:00
GHA: cancel runs on PR, but not on push
In a PR one top commit replaces the previous one. But the central branches are more like timelines. It's nice to have red crosses in a such timeline as clear indicators that something was actually broken.
This commit is contained in:
parent
ad93c0bbdd
commit
a019c63bd6
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -11,7 +11,7 @@ on:
|
|||||||
- published
|
- published
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: docker-${{ github.ref }}
|
group: docker-${{ github.event_name == 'push' && github.sha || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
@ -8,7 +8,7 @@ on:
|
|||||||
pull_request: {}
|
pull_request: {}
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: linux-${{ github.ref }}
|
group: linux-${{ github.event_name == 'push' && github.sha || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
2
.github/workflows/rpm.yml
vendored
2
.github/workflows/rpm.yml
vendored
@ -8,7 +8,7 @@ on:
|
|||||||
pull_request: {}
|
pull_request: {}
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: rpm-${{ github.ref }}
|
group: rpm-${{ github.event_name == 'push' && github.sha || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@ -8,7 +8,7 @@ on:
|
|||||||
pull_request: {}
|
pull_request: {}
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: windows-${{ github.ref }}
|
group: windows-${{ github.event_name == 'push' && github.sha || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user