diff options
| -rw-r--r-- | .github/release-drafter.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml new file mode 100644 index 00000000..81920788 --- /dev/null +++ b/.github/release-drafter.yml @@ -0,0 +1,32 @@ +name-template: '$RESOLVED_VERSION 🌈' +tag-template: '$RESOLVED_VERSION' +categories: + - title: 'Features' + labels: + - 'feature' + - 'features' + - 'enhancement' + - title: 'Bug Fix' + labels: + - 'fix' + - 'bugfix' + - 'bug' + - title: 'Maintenance' + label: 'chore' +change-template: '- $TITLE @$AUTHOR (#$NUMBER)' +change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. +version-resolver: + major: + labels: + - 'major' + minor: + labels: + - 'minor' + patch: + labels: + - 'patch' + default: patch +template: | + ## Changes + + $CHANGES |
