Skip to content

Commit

Permalink
Merge pull request #390 from DeveloperAcademy-POSTECH/feature/389-rel…
Browse files Browse the repository at this point in the history
…ease-note

[DOCS] Release 노트를 구성하는 YAML 파일을 생성하고 노트 생성 자동화를 진행했습니다.
  • Loading branch information
YoonAh-dev authored Feb 28, 2023
2 parents a95cbd3 + 2d410fc commit b34b64a
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# .github/release.yml

name-template: '애니또 v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🆕 새로운 기능이 추가되었어요!'
label: '✨ Feature'
- title: '🐞 자잘한 버그를 수정했습니다.'
label: '🐞 Bugfix'
- title: '🫶🏻 앱 사용성 개선에 힘썼습니다.'
label: '🫶🏻 Improvement'
- title: '🛠️ 더 나은 코드를 위해 노력하고 있습니다.'
labels:
- '🔨 Refactor'
- '⚙️ Setting'
- title: 'ETC'
labels:
- "*"
change-template: '* $TITLE (#$NUMBER) by @$AUTHOR'
change-title-escapes: '\<*_&#@`'
version-resolver:
major:
labels:
- 'Major'
minor:
labels:
- 'Minor'
patch:
labels:
- 'Patch'
default: patch
template: |
$CHANGES
21 changes: 21 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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/release-drafter@v5
with:
config-name: release.yml
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

0 comments on commit b34b64a

Please sign in to comment.