1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2025-09-07 00:11:52 +01:00

1 Commits
1.0.0 ... 1.0.1

Author SHA1 Message Date
Jacob McSwain
1bd58ba903 Try drafting releases 2019-10-19 18:38:00 -05:00
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 }}