Skip to content

Commit

Permalink
setting: 릴리즈 노트 자동화 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Aug 30, 2024
1 parent ae8fb04 commit e4668ee
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🎁 새로운 기능이 추가되었어요'
labels: ['🎁 feature']
- title: '🐞 기존 버그가 수정되었어요'
labels: ['🐞 fix']
- title: '🐬 코드를 개선했어요'
labels:
- '🛠️ refactor'
- '🧪 test'
- '🪛 chore'
- title: '⚙️ 프로젝트를 개선했어요'
labels:
- '🪄 setting'
- '📚 documentation'
- '🏭 environment'
- title: '🚀 배포'
labels:
- '🚀 deployment'

change-template: '- $TITLE #$NUMBER @$AUTHOR '
template: |
## 이번 버전의 변경사항은 아래와 같아요
---
$CHANGES
no-changes-template: '변경사항이 없어요'
version-resolver:
major:
labels:
- '1️⃣ major'
minor:
labels:
- '2️⃣ minor'
patch:
labels:
- '3️⃣ patch'
default: patch
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.ACTION_TOKEN }}

0 comments on commit e4668ee

Please sign in to comment.