Last active
November 10, 2019 02:18
-
-
Save josemarluedke/b947b8125061cecdbc9a1e37069a9de3 to your computer and use it in GitHub Desktop.
My Release Drafter configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration for Release Drafter - https://github.com/toolmantim/release-drafter | |
name-template: v$NEXT_MINOR_VERSION | |
tag-template: v$NEXT_MINOR_VERSION | |
categories: | |
- title: ':boom: Breaking Change' | |
label: 'Type: Breaking Change' | |
- title: ':rocket: Enhancement' | |
label: 'Type: Enhancement' | |
- title: ':bug: Bug Fix' | |
label: 'Type: Bug' | |
- title: ':nail_care: Refactor' | |
label: 'Type: Refactor' | |
- title: ':memo: Documentation' | |
label: 'Type: Documentation' | |
- title: ':house: Internal' | |
label: 'Type: Internal' | |
- title: ':wrench: Tooling' | |
label: 'Type: Tooling' | |
- title: ':package: Dependencies' | |
label: 'Type: Dependencies' | |
change-template: '- $TITLE (#$NUMBER) @$AUTHOR' | |
no-changes-template: '- No changes' | |
template: | | |
$CHANGES | |
*** | |
### Contributors | |
$CONTRIBUTORS | |
*** | |
For full changes, see the [comparison between $PREVIOUS_TAG and v$NEXT_MINOR_VERSION](https://github.com/ME/MY_REPO/compare/$PREVIOUS_TAG...v$NEXT_MINOR_VERSION) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment