-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #196 from liquibase/DAT-15998
feat(release-drafter.yml): add release drafter configuration file
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
|
||
name-template: 'Support for Liquibase BigQuery Extension v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
exclude-labels: | ||
- 'skipReleaseNotes' | ||
categories: | ||
- title: ':green_book: Notable Changes' | ||
labels: | ||
- 'notableChanges' | ||
- title: 'π New Features' | ||
labels: | ||
- 'TypeEnhancement' | ||
- 'TypeTest' | ||
- title: 'π Bug Fixes π ' | ||
labels: | ||
- 'TypeBug' | ||
- title: 'π₯ Breaking Changes' | ||
labels: | ||
- 'breakingChanges' | ||
- title: 'π€ Security Driver and Other Updates' | ||
collapse-after: 5 | ||
labels: | ||
- 'sdou' | ||
- 'dependencies' | ||
- title: 'π New Contributors' | ||
labels: | ||
- 'newContributors' | ||
|
||
|
||
change-template: '- (#$NUMBER) $TITLE @$AUTHOR ' | ||
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: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'patch' | ||
- 'bugfix' | ||
- 'sdou' | ||
default: patch | ||
template: | | ||
## Changes | ||
$CHANGES | ||
**Full Changelog**: https://github.com/liquibase/liquibase-hibernate/compare/$PREVIOUS_TAG...$RESOLVED_VERSION |