1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2024-10-05 18:40:49 +01:00

Try drafting releases

This commit is contained in:
Jacob McSwain 2019-10-19 18:38:00 -05:00
parent 6978121b1f
commit 1bd58ba903
No known key found for this signature in database
GPG Key ID: 59957AD09B94EDF5
2 changed files with 33 additions and 0 deletions

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

@ -0,0 +1,19 @@
name-template: '$NEXT_PATCH_VERSION'
tag-template: '$NEXT_PATCH_VERSION'
categories:
- title: 'Features'
labels:
- 'feature'
- 'enhancement'
- title: 'Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: 'Maintenance'
label: 'maintenance'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES

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

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