Release Notes Generator
Generate polished release notes from git log and merged PRs.
Step 1: Determine Range
git tag --sort=-v:refname | head -5
- If
--since <tag>provided: use that tag as base. - If no tags exist: use
git rev-list --max-parents=0 HEAD(first commit).
git log <base_tag>..HEAD --oneline --no-merges
If 0 commits found: output [RN-003] No commits between <from> and HEAD. and stop (exit 0).
Step 2: Fetch PR Data
gh pr list --sta
[Description truncada. Veja o README completo no GitHub.]