From 7f3281bee11f65f7f5fa172b36c9b548bc7ef0cb Mon Sep 17 00:00:00 2001 From: Robert Stupp Date: Mon, 2 Feb 2026 09:47:22 +0100 Subject: [PATCH] CI: Fix site workflow concurrency The change #3520 added a concurrency group, accidentally a _static_ concurrency group which applies to both pushed to "main" and all PRs, which is wrong. --- .github/workflows/site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index b800bd4e56..089022535d 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -31,7 +31,7 @@ on: # Ensure that no two site publications happen concurrently. # 1 job per reference can run concurrently, no cancellation concurrency: - group: site-publishing + group: site-publishing-${{ case(github.event_name == 'push', 'main', github.ref) }} cancel-in-progress: false jobs: