Skip to content

Commit

Permalink
chore: 릴리즈 설정 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
miiiingi committed May 4, 2024
1 parent b361526 commit 5bd7eff
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/release-note.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name-template: 'PigonAir v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🆕 새로운 기능이 추가되었어요!'
label: 'Feature'
- title: '🐞 자잘한 버그를 수정했습니다.'
label: 'Bugfix'
- title: '🫶🏻 앱 사용성 개선에 힘썼습니다.'
label: 'Improvement'
- title: '🛠️ 더 나은 코드를 위해 노력하고 있습니다.'
label: 'Refactor'

change-template: '* $TITLE (#$NUMBER) by @$AUTHOR'
change-title-escapes: '\<*_&#@`'
exclude-labels:
- 'Main'
version-resolver:
major:
labels:
- 'Major'
minor:
labels:
- 'Minor'
patch:
labels:
- 'Patch'
default: patch
template: |
$CHANGES
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
runs-on: ubuntu-latest
steps:
- uses: release-drafter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
config-name: release-note.yml # 설정 파일명 확인 필요
commitish: main # 동적으로 현재 브랜치를 참조하도록 수정

0 comments on commit 5bd7eff

Please sign in to comment.