Improve release drafter (#998)

* Change titels to reflect official/new naming

* Use GitHub Actions to trigger Release Drafter

The Add-On is no longer developed and GitHub Actions is the recommended
way to use the Release Drafter
This commit is contained in:
Stefan Agner 2020-11-16 22:13:01 +01:00 committed by GitHub
parent e8c2bacae6
commit 0797bccc36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 4 deletions

View File

@ -1,16 +1,18 @@
categories:
- title: 'HassOS Core'
- title: 'Home Assistant Operating System'
label: 'os'
- title: 'Build'
- title: 'Build System'
label: 'build'
- title: 'Raspberry Pi'
label: 'board/raspberrypi'
- title: 'Open Virtual Appliance'
label: 'board/ova'
- title: 'Intel-Nuc'
- title: 'Intel NUC'
label: 'board/intel-nuc'
- title: 'Hardkernel'
- title: 'Hardkernel ODROID'
label: 'board/hardkernel'
- title: 'ASUS Tinker'
label: 'board/tinker'
template: |
## Changes

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

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