Skip to content

Commit

Permalink
add release drafter config
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow authored and kodiakhq[bot] committed Jul 27, 2022
1 parent d47fe49 commit 7448334
Showing 1 changed file with 87 additions and 0 deletions.
87 changes: 87 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name-template: '$RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'

categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '💥 Breaking Changes'
labels:
- 'api-breaking change'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
labels:
- 'chore'
- 'dependencies'
- title: 'ℹ️ Website'
labels:
- 'documentation'

#change-template: '- $TITLE [@$AUTHOR](https://github.com/$AUTHOR) ([#$NUMBER](https://github.com/rbusarow/Hermit/pull/$NUMBER))'
change-template: '- $TITLE ([#$NUMBER](https://github.com/rbusarow/Hermit/pull/$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'
- 'feature'
- 'enhancement'
patch:
labels:
- 'patch'
- 'fix'
- 'bugfix'
- 'bug'
default: patch

template: |
## Changes
$CHANGES
## Contributors
$CONTRIBUTORS
exclude-contributors:
- 'dependabot'
- 'dependabot[bot]'
- 'rbusarow'
- 'renovate'
- 'renovate[bot]'
- 'renovate-bot'
- 'kodiakhq'
- 'kodiakhq[bot]'

autolabeler:
- label: 'documentation'
files:
- '*.md'
- label: 'dependencies'
branch:
- '/dependabot\/.+/'
- '/renovate\/.+/'

include-labels:
- 'api-breaking change'
- 'bug'
- 'bugfix'
- 'chore'
- 'dependencies'
- 'documentation'
- 'enhancement'
- 'feature'
- 'fix'
- 'major'
- 'minor'
- 'patch'

0 comments on commit 7448334

Please sign in to comment.