chore(release): invoke create release branch from prepare complete and support /create-release-branch - #4017
Merged
rickeylev merged 2 commits intoAug 8, 2026
Conversation
Triggering the create_release_branch workflow on issue edits fires more often than necessary and does not trigger when other GitHub Actions workflows perform the modifications due to token recursion limits. Invoke the create release branch workflow directly from the complete prepare workflow passing the tracking issue, support manual and reusable workflow dispatch for branch creation, and introduce a shared helper for writing to GITHUB_OUTPUT.
Maintainers needed a comment command to manually cut the release branch from the tracking issue if the automatic chained step is missed. Add /create-release-branch parser to the on_comment workflow dispatching to the release_create_release_branch workflow, and document the command in the release tracking issue template and releasing guide.
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.
Triggering the create release branch workflow on issue edits fired
unnecessarily on unrelated edits and failed to trigger when other
GitHub Actions modified the issue due to token recursion limits.
Maintainers also lacked a direct comment command to manually cut the
release branch from a release tracking issue if needed.
Invoke the create release branch workflow automatically upon
completion of the prepare workflow, support manual and reusable
workflow dispatch with a tracking issue input, add
/create-release-branchcomment command support, and introduce ashared helper for writing GitHub Actions step outputs across release
tools.