Add Release Drafter

This commit is contained in:
Ludeeus 2021-03-31 20:52:44 +02:00
parent 7fa8ae9d42
commit f01a9171d3
2 changed files with 24 additions and 0 deletions

8
.github/release-drafter.yml vendored Normal file
View File

@ -0,0 +1,8 @@
change-template: '- #$NUMBER $TITLE @$AUTHOR'
sort-direction: ascending
exclude-labels:
- "release-drafter-ignore"
template: |
## Whats Changed
$CHANGES

16
.github/workflows/release-drafter.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Release Drafter
on:
push:
branches:
- main
jobs:
release-drafter:
name: Release Drafter
runs-on: ubuntu-latest
steps:
- name: 🏃 Run Release Drafter
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}