Skip to content

Commit

Permalink
release ์ถ”๊ฐ€ (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghyun421 authored and JaeHyup0504 committed May 17, 2024
1 parent c4e42dc commit e196bee
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Drafter

# Components of the release notes
categories:
- title: '๐Ÿš€ Features'
labels:
- 'feature'
- title: '๐Ÿ› Bug Fixes'
labels:
- 'bug'
- title: '๐Ÿงน Chores'
labels:
- 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
version-template: 'v$NEXT_PATCH_VERSION'
template: |
## What's Changed
$CHANGES
**Full Changelog**: https://github.com/$REPO/compare/$PREVIOUS_TAG...$NEW_TAG
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
pull_request:
types: [closed]
release:
types: [published]

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Update Release Drafter
uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter.yml

0 comments on commit e196bee

Please sign in to comment.