changelog
Installation
SKILL.md
Changelog
Collaborating skills
- Git Commit: skill:
git-commit— commit the updated CHANGELOG.md with a conventional message - Create PR: skill:
create-pr— open a release PR after updating the changelog
Workflow
Step 1: Gather changes from git
# Find the last tag
git describe --tags --abbrev=0
# List commits since last tag (replace v1.2.0 with the tag found above)
git log v1.2.0..HEAD --oneline --no-merges