| name | generate-changelog |
|---|---|
| description | Auto-generate project changelog |
Automatically generate changelog based on Git commit history.
- Before releasing a new version
- When summarizing project changes
- Generating release notes
- Get recent Git commits
- Group by type (features, fixes, refactors, etc.)
- Generate formatted changelog
git log --oneline --pretty=format:"%h - %s (%an, %ar)" --since="30 days ago"Generates a changelog containing all commits from the last 30 days, sorted in reverse chronological order.