Skip to content

Commit

Permalink
[etc] add release drafter github action (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
dojinyou authored Nov 10, 2023
1 parent a248aa8 commit 542d7f6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name-template: 'πŸš€ v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: 'πŸš€ Features'
labels:
- 'feature'
- title: 'πŸ› Bug Fixes'
labels:
- 'fix'
- title: '🧰 Maintenance'
labels:
- 'test'
- 'style'
- 'refactor'

change-template: '- $TITLE (#$NUMBER) @$AUTHOR '
change-title-escapes: '\<*_&'
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
template: |
## πŸš€ 이번 λ²„μ „μ—μ„œλŠ” μ–΄λ–€ 게 λ°”λ€Œμ—ˆμ„κΉŒμš”?
---
$CHANGES
no-changes-template: 'μ•—! 변경사항이 μ—†μ–΄μš”. πŸ˜–'
14 changes: 14 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release Drafter
on:
push:
branches:
- main
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter-config.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 542d7f6

Please sign in to comment.