Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
35 additions
and 0 deletions.
@@ -0,0 +1,21 @@ | ||
name-template: 'v$NEXT_PATCH_VERSION' | ||
tag-template: 'v$NEXT_PATCH_VERSION' | ||
|
||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feature' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'bugfix' | ||
|
||
exclude-labels: | ||
- 'docs' | ||
- 'pedantic' | ||
|
||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
|
||
template: | | ||
## Changes | ||
$CHANGES |
@@ -0,0 +1,14 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toolmantim/release-drafter@v5.2.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |