I see that in the pull request template, there’s a code block with the release-note
“syntax”.
I’m assuming these’s some script in one of the repos that aggregates these between releases and generates a draft CHANGELOG.
I want to do something similar for a repository and was wondering if someone could point me to this script.
Mostly they would be using some open source software that does this integration like this
or
or
.github/release-drafter.yml
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
version-template: '$MAJOR.$MINOR.$PATCH'
1 Like