ci: remove release concurrency group from on_master.yaml#783
Merged
Conversation
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.
janbuchar
approved these changes
May 7, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #783 +/- ##
==========================================
+ Coverage 97.69% 97.80% +0.10%
==========================================
Files 48 48
Lines 4864 4864
==========================================
+ Hits 4752 4757 +5
+ Misses 112 107 -5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
on_master.yamlworkflow dispatchesmanual_release_beta.yamland waits for it to finish, but both used the samereleaseconcurrency group withcancel-in-progress: false. Result: the dispatched run sat inpendingforever while the parent held the slot — classic deadlock (see this stuck run).Removing
concurrencyfromon_master.yamlfixes it.manual_release_beta.yamlandmanual_release_stable.yamlstill share thereleasegroup, so serialization between actual releases is preserved.