ci(release): add concurrency group so duplicate releases don't race - #424
Merged
Conversation
release.yaml had a permissions block but no concurrency: group — unlike pr.yaml/codeql.yaml/benchmarks.yaml. A duplicate or re-published `release: published` event could therefore run two publish pipelines against NuGet and gh-pages simultaneously. Add a release-scoped concurrency group with cancel-in-progress: false (never cancel an in-flight release — a half-published package family is worse than a queued one). Surfaced by the code-review pass on ETL-FixedWidth; release.yaml is canonical, so fixing here for fleet sync rather than diverging one repo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jun 30, 2026
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Merged
Chris-Wolfgang
added a commit
to Chris-Wolfgang/DbContextBuilder
that referenced
this pull request
Jun 30, 2026
…366) ## Summary Adds a top-level `concurrency:` group to `release.yaml` so a duplicate or re-published `release: published` event can't run two publish pipelines against NuGet and gh-pages at once. `cancel-in-progress: false` — never cancel an in-flight release. Canonical fix from Chris-Wolfgang/repo-template#424, fanned out to the fleet. `release.yaml` is a protected file, so this needs a maintainer admin-bypass merge. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
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
release.yamlhad apermissions:block but noconcurrency:group — unlikepr.yaml/codeql.yaml/benchmarks.yaml. A duplicate or re-publishedrelease: publishedevent could run two publish pipelines against NuGet and gh-pages at once.Adds a release-scoped concurrency group with
cancel-in-progress: false(never cancel an in-flight release — a half-published package family is worse than a queued one):Surfaced by the code-review pass on ETL-FixedWidth;
release.yamlis canonical, so fixing here for fleet sync.