Skip to content

Commit 34125a1

Browse files
committed
ci: Add release drafter configuration and workflow
1 parent 25a48a4 commit 34125a1

2 files changed

Lines changed: 52 additions & 0 deletions

File tree

.github/release-drafter.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
categories:
2+
- title: '🚀 Enhancements'
3+
labels:
4+
- feature
5+
- enhancement
6+
- title: '📚 Documentation Updates'
7+
labels:
8+
- docs
9+
- title: '🐛 Bug Fixes'
10+
labels:
11+
- fix
12+
- bugfix
13+
- bug
14+
- title: '🧰 Maintenance'
15+
labels:
16+
- chore
17+
18+
template: |
19+
## Summary
20+
21+
_Human readable summary of changes_
22+
23+
## Changes
24+
25+
$CHANGES
26+
27+
## This release was made possible by the following contributors:
28+
29+
$CONTRIBUTORS
30+
31+
exclude-labels:
32+
- skip-changelog
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
update_release_draft:
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: release-drafter/release-drafter@v6
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)