-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
258754b
commit b937ae7
Showing
2 changed files
with
43 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,21 @@ | ||
name: Release Drafter | ||
|
||
# Components of the release notes | ||
categories: | ||
- title: '๐ Features' | ||
labels: | ||
- 'feature' | ||
- title: '๐ Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: '๐งน Chores' | ||
labels: | ||
- 'chore' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
version-template: 'v$NEXT_PATCH_VERSION' | ||
template: | | ||
## What's Changed | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$REPO/compare/$PREVIOUS_TAG...$NEW_TAG |
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,22 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [closed] | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Update Release Drafter | ||
uses: release-drafter/release-drafter@v5 | ||
with: | ||
config-name: release-drafter.yml |