Skip to content

Commit ed542a5

Browse files
authored
chore: add release drafter workflow (#382)
Signed-off-by: heitorlessa <[email protected]>
1 parent c9265b0 commit ed542a5

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/release-drafter.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,20 @@ categories:
2020
- title: '🚒 Deprecations'
2121
labels:
2222
- 'deprecated'
23+
- title: '🔧 Maintenance'
24+
labels:
25+
- 'internal'
26+
- 'dependencies'
2327
exclude-labels:
2428
- 'skip-changelog'
2529
tag-template: 'v$NEXT_PATCH_VERSION'
2630
template: |
27-
## Changes
31+
## Summary
2832
2933
**[Human readable summary of changes]**
3034
35+
## Changes
36+
3137
$CHANGES
3238
3339
## This release was made possible by the following contributors:

.github/workflows/release-drafter.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
update_release_draft:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: release-drafter/[email protected]
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)