diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 0000000..d8dbec0 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,40 @@ +name-template: 'v$RESOLVED_VERSION' +tag-template: 'v$RESOLVED_VERSION' +categories: + - title: '๐Ÿš€ Features and Improvements' + labels: + - 'feature' + - 'improvement' + - 'enhancement' + - 'feat' + - title: '๐Ÿ› Bug Fixes' + labels: + - 'bug' + - 'fix' + - 'bugfix' + - title: '๐Ÿงฐ Maintenance' + labels: + - 'maintenance' + - 'chore' +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. +version-resolver: + minor: + labels: + - 'feature' + - 'improvement' + - 'enhancement' + - 'feat' + patch: + labels: + - 'bug' + - 'fix' + - 'bugfix' + - 'maintenance' + - 'chore' +exclude-labels: + - 'skip-changelog' +template: | + ## Whatโ€™s Changed + + $CHANGES