mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
Add GitHub action for release drafter
Signed-off-by: rick <rick@jenkins-zh.cn>
This commit is contained in:
parent
3bbe45f23e
commit
a37fea63ef
|
|
@ -0,0 +1,18 @@
|
|||
approvers:
|
||||
- pixiake
|
||||
- Forest-L
|
||||
- rayzhou2017
|
||||
- LinuxSuRen
|
||||
|
||||
reviewers:
|
||||
- pixiake
|
||||
- Forest-L
|
||||
- rayzhou2017
|
||||
- zryfish
|
||||
- shaowenchen
|
||||
- benjaminhuo
|
||||
- calvinyv
|
||||
- FeynmanZhou
|
||||
- huanggze
|
||||
- wansir
|
||||
- LinuxSuRen
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 }}
|
||||
Loading…
Reference in New Issue