From 03cf9b3a1cf195a2a832292120b7f43ea460bcf7 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Thu, 7 May 2026 14:51:56 +0200 Subject: [PATCH] ci: remove release concurrency group from on_master.yaml The on_master workflow dispatches manual_release_beta.yaml and waits for it to complete, but both shared the same `release` concurrency group, causing a deadlock: the dispatched run sat in `pending` while the parent held the slot. Beta/stable workflows still own the `release` group, so serialization between releases is preserved. --- .github/workflows/on_master.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/on_master.yaml b/.github/workflows/on_master.yaml index 1e7c549..52874f9 100644 --- a/.github/workflows/on_master.yaml +++ b/.github/workflows/on_master.yaml @@ -7,10 +7,6 @@ on: tags-ignore: - "**" # Ignore all tags to avoid duplicate executions triggered by tag pushes. -concurrency: - group: release - cancel-in-progress: false - jobs: code_checks: name: Code checks