Skip to content

Commit

Permalink
chore: release note 자동화 workflow 추가 (#16) (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmswl98 authored Aug 29, 2023
1 parent adb95c3 commit 17c5c47
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name-template: '🚀 v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '✨ Features'
labels:
- 'feature'
- 'feature ✨'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'fix 🐛'
- title: '🧰 Maintenance'
label:
- 'chore'
- 'docs'
- 'chore 🔨'
- 'docs 📝'
- title: '⚡ performance'
label:
- 'refactor'
- 'test'
- 'refactor ♻️'
- 'test ✅'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
template: |
template: |
## 📌 변경 사항
---
$CHANGES
no-changes-template: '⚠️ 변경 사항이 없어요!'
22 changes: 22 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Drafter

on:
push:
branches:
- main

permissions:
contents: read

jobs:
update_release_draft:
permissions:
contents: write
pull-requests: write
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 17c5c47

Please sign in to comment.