Add automatic release drafter

This commit is contained in:
R. Miles McCain 2020-06-28 17:47:58 +00:00
parent a1cd3d4609
commit f464a7ee67
No known key found for this signature in database
GPG Key ID: F1053629E2905557
2 changed files with 18 additions and 0 deletions

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

@ -0,0 +1,4 @@
template: |
## Whats Changed
$CHANGES

14
.github/workflows/draft.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Release Drafter
on:
push:
branches:
- master
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5.11.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}