Skip to content

Serialize release workflow to prevent major-tag race conditions#1266

Merged
v1v merged 2 commits into
mainfrom
copilot/framework-best-practices-serialize-release-workflo
Jun 23, 2026
Merged

Serialize release workflow to prevent major-tag race conditions#1266
v1v merged 2 commits into
mainfrom
copilot/framework-best-practices-serialize-release-workflo

Conversation

Copilot AI commented Jun 15, 2026

Copy link
Copy Markdown
Contributor

The release workflow force-updates floating major tags (v0, v1) without serialization. Concurrent releases can race on the same major tag, potentially leaving it at an unintended commit.

Changes

Added workflow-level concurrency block to .github/workflows/release.yml:

concurrency:
  group: release
  cancel-in-progress: false

This serializes all release runs. The global group prevents concurrent execution; cancel-in-progress: false ensures queued releases complete sequentially rather than being cancelled.

Copilot AI changed the title [WIP] Fix release workflow to serialize major tag updates Serialize release workflow to prevent major-tag race conditions Jun 15, 2026
Copilot finished work on behalf of v1v June 15, 2026 07:16
Copilot AI requested a review from v1v June 15, 2026 07:16
@v1v v1v marked this pull request as ready for review June 15, 2026 18:51
@v1v v1v merged commit 770023d into main Jun 23, 2026
19 checks passed
@v1v v1v deleted the copilot/framework-best-practices-serialize-release-workflo branch June 23, 2026 13:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants