Skip to content

Commit 4c8aa0c

Browse files
authored
ci: remove release concurrency group from on_master.yaml (#64)
## Summary The `on_master.yaml` workflow dispatches `manual_release_beta.yaml` and waits for it to finish, but both used the same `release` concurrency group with `cancel-in-progress: false`. Result: the dispatched run sat in `pending` forever while the parent held the slot — classic deadlock (see [this stuck run](https://github.com/apify/apify-client-python/actions/runs/25493818348/job/74808676838)). Removing `concurrency` from `on_master.yaml` fixes it. `manual_release_beta.yaml` and `manual_release_stable.yaml` still share the `release` group, so serialization between actual releases is preserved.
1 parent fecca3a commit 4c8aa0c

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

.github/workflows/on_master.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ on:
77
tags-ignore:
88
- "**" # Ignore all tags to avoid duplicate executions triggered by tag pushes.
99

10-
concurrency:
11-
group: release
12-
cancel-in-progress: false
13-
1410
jobs:
1511
code_checks:
1612
name: Code checks

0 commit comments

Comments
 (0)