Trim release notes to highlights when the changelog entry is huge - #27
Closed
Marcogn wants to merge 1 commit into
Closed
Trim release notes to highlights when the changelog entry is huge#27Marcogn wants to merge 1 commit into
Marcogn wants to merge 1 commit into
Conversation
The "Extract changelog section" step used to hand the whole cut CHANGELOG.md section to the GitHub Release body verbatim, regardless of length. Sections at or under 1500 characters still work that way; past that, the body is reduced to the section's "### " subsection headings (or its top-level "- **bold**" bullets, for a version with no subsections) plus a link back to CHANGELOG.md for the full write-up. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VQrE6ntdCMh5JQfS5m5WVL
4 tasks
Owner
Author
|
Superseded by #28, which drops the 1500-character cutoff entirely in favor of always extracting significant-change highlights (uniform with the same change in 3DSAppManager and ThePatientGamerHelper). Closing this in favor of that PR. Generated by 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.yml's "Extract changelog section" step used to copy the whole cutCHANGELOG.mdsection into the GitHub Release body verbatim, no matter its length.###subsection headings (or its top-level- **bold**bullets, for a version with no subsections), followed by a link back toCHANGELOG.mdfor the full write-up.Marcogn/3DSAppManager'srelease.ymlfor consistency between the two pipelines (separate PR).Test plan
python3 -c "import yaml; yaml.safe_load(open('.github/workflows/release.yml'))"— YAML parses.CHANGELOG.md(short## [1.0.0]entry) — passes through verbatim, as before.### Added/### Changed/### Fixed/### Removedsubsections — correctly collapses to the four headings plus the CHANGELOG.md link.workflow_dispatch(would cut a real release).Generated by Claude Code