diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index f8bdc1c711..5a51d90789 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,18 +1,19 @@ -name: Release Drafter - -template: | - ## What’s Changed - - $CHANGES - +name-template: 'v$NEXT_PATCH_VERSION' +tag-template: 'v$NEXT_PATCH_VERSION' categories: - - title: πŸš€ Features + - title: 'πŸš€ New Features' + labels: + - 'feature' + - title: 'πŸ› Bug Fixes' labels: - - feature - - - title: πŸ› Bug Fixes + - 'bug' + - title: 'πŸ›  Maintenance' labels: - - bug - -change-template: '- $TITLE (#$NUMBER) by @$AUTHOR' -version-template: 'v$MAJOR.$MINOR.$PATCH' + - 'chore' +template: | + ## Changes + $CHANGES + ## Contributors + $CONTRIBUTORS +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +no-changes-template: '- No changes'