ci: remove changelog rollover from release workflow#97
Merged
Mikola Lysenko (mikolalysenko) merged 1 commit intoJun 2, 2026
Conversation
The changelog-rollover job committed a "roll [Unreleased] over to vX.Y.Z" change directly back to main after publishing. Branch protection rejects that push (required workflow not satisfied, changes must go through a PR, commits must be signed), so the job failed every release without adding value. Remove the job and its scripts/rollover-changelog.sh helper. Maintainers now rename `## [Unreleased]` to `## [X.Y.Z] — DATE` by hand in the version-bump PR. The version job's CHANGELOG check is simplified to require an explicit `## [X.Y.Z]` heading (it no longer accepts a non-empty [Unreleased] section as a stand-in for the post-publish stamp). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
This turned out to be a dumb idea |
Wenxin Jiang (Wenxin-Jiang)
approved these changes
Jun 2, 2026
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
Removes the
changelog-rolloverjob from the release workflow. After publishing, that job committed achore(changelog): roll [Unreleased] over to vX.Y.Zchange directly back tomain. Branch protection rejects that push every time:So the job failed every release while adding no value.
Changes
changelog-rolloverjob andscripts/rollover-changelog.sh.versionjob's CHANGELOG check to require an explicit## [X.Y.Z]heading. It previously also accepted a non-empty## [Unreleased]section as a stand-in for the post-publish stamp the rollover job would write — that path no longer exists.New flow
Maintainers rename
## [Unreleased]→## [X.Y.Z] — DATEby hand in the version-bump PR (the same PR that bumpsCargo.toml). No post-release push tomain, so nothing fights branch protection.🤖 Generated with Claude Code