Skip to content

Commit

Permalink
chore: setup release drafter (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
junghoon-vans authored Jul 19, 2023
1 parent 6d21efe commit a403af7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
categories:
- title: '⚠️ Breaking changes'
label: 'breaking-change'
- title: '🚀 Features'
label: 'feature'
- title: '🐛 Bug Fixes'
label: 'fix'
- title: '🛠️ Maintenance'
label: 'chore'
exclude-labels:
- 'skip-changelog'
template: |
## What's Changed
$CHANGES
12 changes: 12 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Release Drafter
on:
push:
branches:
- main
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a403af7

Please sign in to comment.