From 676baeecad945be42246e05a5d7fd5fa1a930c6e Mon Sep 17 00:00:00 2001 From: Christoph Froehlich Date: Wed, 11 Mar 2026 19:05:57 +0000 Subject: [PATCH] Run workflows also on push event to cache ccache --- .github/workflows/rolling-debian-binary-build.yml | 3 ++- .github/workflows/rolling-rhel-binary-build.yml | 3 ++- .github/workflows/rolling-win-binary-build.yml | 6 ++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rolling-debian-binary-build.yml b/.github/workflows/rolling-debian-binary-build.yml index 914a296..96242c1 100644 --- a/.github/workflows/rolling-debian-binary-build.yml +++ b/.github/workflows/rolling-debian-binary-build.yml @@ -1,9 +1,10 @@ name: Rolling - Debian Binary Build on: workflow_dispatch: - pull_request: + pull_request: &event branches: - main + push: *event concurrency: # cancel previous runs of the same workflow, except for pushes on given branches diff --git a/.github/workflows/rolling-rhel-binary-build.yml b/.github/workflows/rolling-rhel-binary-build.yml index cc7a0a9..0d013d0 100644 --- a/.github/workflows/rolling-rhel-binary-build.yml +++ b/.github/workflows/rolling-rhel-binary-build.yml @@ -1,9 +1,10 @@ name: Rolling - RHEL Binary Build on: workflow_dispatch: - pull_request: + pull_request: &event branches: - main + push: *event concurrency: # cancel previous runs of the same workflow, except for pushes on given branches diff --git a/.github/workflows/rolling-win-binary-build.yml b/.github/workflows/rolling-win-binary-build.yml index 4843919..6ad460a 100644 --- a/.github/workflows/rolling-win-binary-build.yml +++ b/.github/workflows/rolling-win-binary-build.yml @@ -4,12 +4,10 @@ name: Rolling Windows Binary Build on: workflow_dispatch: - pull_request: - branches: - - main - push: + pull_request: &event branches: - main + push: *event concurrency: # cancel previous runs of the same workflow, except for pushes on given branches