Add Release Drafter (#7343)

This commit is contained in:
jonpas 2020-01-01 21:37:12 +01:00 committed by GitHub
parent 4daec7a350
commit a3ac689aed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

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

@ -0,0 +1,21 @@
categories:
- title: '**ADDED:**'
labels:
- 'kind/feature request'
- 'kind/enhancement'
- 'area/translations'
- title: '**FIXED:**'
labels:
- 'kind/bug fix'
- title: '**CHANGED:**'
labels:
- 'kind/enhancement'
- 'kind/cleanup'
- 'area/compatibility'
change-template: '- $TITLE (#$NUMBER)'
template: |
_Requires CBA version X.Y.Z or later and Arma 3 version X.Y or later._
## Change Log Summary
$CHANGES

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

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