Add GitHub action for release drafter

Signed-off-by: rick <rick@jenkins-zh.cn>
This commit is contained in:
rick 2021-02-02 22:21:59 +08:00
parent 3bbe45f23e
commit a37fea63ef
No known key found for this signature in database
GPG Key ID: 4DF7126098031BD3
3 changed files with 39 additions and 1 deletions

18
.github/OWNERS vendored Normal file
View File

@ -0,0 +1,18 @@
approvers:
- pixiake
- Forest-L
- rayzhou2017
- LinuxSuRen
reviewers:
- pixiake
- Forest-L
- rayzhou2017
- zryfish
- shaowenchen
- benjaminhuo
- calvinyv
- FeynmanZhou
- huanggze
- wansir
- LinuxSuRen

View File

@ -8,18 +8,23 @@ categories:
labels:
- 'feature'
- 'enhancement'
- 'kind/feature'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- 'regression'
- 'kind/bug'
- title: 📝 Documentation updates
label: documentation
labels:
- 'documentation'
- 'kind/documentation'
- title: 👻 Maintenance
labels:
- chore
- dependencies
- 'kind/cleanup'
- title: 🚦 Tests
labels:
- test

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:
- uses: release-drafter/release-drafter@v5
with:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}