chore: release workflow no longer requires a manual title - #15
Merged
Conversation
The workflow_dispatch form asked for both `version` and `title`, but `title` was only ever used to build the CHANGELOG heading (## vX.Y.Z – <title> (date)) — an extra manual field for something meant to be a quick trigger. Dropped it: the heading is now just `## vX.Y.Z (date)`, and the actual release notes still come verbatim from the Unreleased section's own content, unchanged. `version` stays manual since a semver bump is a real judgment call.
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
.github/workflows/release.yml'sworkflow_dispatchform used to ask for bothversionandtitle—titlewas only ever used to build the CHANGELOG heading (## vX.Y.Z – <title> (date)), an extra manual field for what's meant to be a quick trigger.titleentirely: the heading is now just## vX.Y.Z (date). The actual release notes are unaffected — they still come verbatim from the## Unreleasedsection's own content, which is the part that actually describes what shipped.versionstays manual (typed by hand): choosing a semver bump is a real judgment call the workflow can't safely infer.CLAUDE.mdandCHANGELOG.md's framing text to match (historical CHANGELOG entries describing what a past release actually did are left untouched).Test plan
python3 -c "import yaml; yaml.safe_load(...)"— workflow YAML parses cleanlyTITLE/titlereferences)Releaseworkflow (next real release will confirm the new single-input form end to end)Generated by Claude Code