From b8f9458debd28be6d226bf548d2da3a9b0859bb0 Mon Sep 17 00:00:00 2001 From: William Graf <7930703+willgraf@users.noreply.github.com> Date: Tue, 4 May 2021 11:10:29 -0700 Subject: [PATCH] Add release-drafter template file. --- .github/release-drafter.yml | 55 +++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 00000000..a6351c03 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,55 @@ +name-template: '$RESOLVED_VERSION' + +tag-template: '$RESOLVED_VERSION' + +version-template: '$MAJOR.$MINOR.$PATCH' + +categories: + - title: '🚀 Features' + labels: + - 'feature' + - 'enhancement' + - title: '🐛 Bug Fixes' + labels: + - 'fix' + - 'bugfix' + - 'bug' + - 'hotfix' + - title: '🧰 Maintenance' + labels: + - 'chore' + - title: '📚️ Documentation' + labels: + - 'documentation' + +change-template: | +
+ $TITLE @$AUTHOR (#$NUMBER) + + $BODY +
+ +change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. + +version-resolver: + major: + labels: + - 'major' + minor: + labels: + - 'minor' + - 'enhancement' + patch: + labels: + - 'auto-update' + - 'patch' + - 'fix' + - 'bugfix' + - 'bug' + - 'hotfix' + - 'packages' + - 'documentation' + default: minor + +template: | + $CHANGES