Skip to content

Commit 3d77ec6

Browse files
committed
fix: action ์ˆ˜์ •
1 parent bc3c3b6 commit 3d77ec6

File tree

3 files changed

+57
-20
lines changed

3 files changed

+57
-20
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name-template: "v$RESOLVED_VERSION ๐ŸŒˆ"
2+
tag-template: "v$RESOLVED_VERSION"
3+
categories:
4+
- title: "Bug Fixes"
5+
label: "bug"
6+
- title: "New Features"
7+
label: "enhancement"
8+
- title: "Documentation"
9+
label: "documentation"
10+
- title: "Chore"
11+
label: "chore"
12+
change-template: "- $TITLE @$AUTHOR (#$NUMBER)"
13+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
14+
template: |
15+
## Changes
16+
17+
$CHANGES
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Release Drafter
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
# Only following types are handled by the action, but one can default to all as well
8+
types: [closed]
9+
# pull_request_target event is required for autolabeler to support PRs from forks
10+
# pull_request_target:
11+
# types: [opened, reopened, synchronize]
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
update_release_draft:
18+
permissions:
19+
# write permission is required to create a github release
20+
contents: write
21+
# write permission is required for autolabeler
22+
# otherwise, read permission is required at least
23+
pull-requests: write
24+
runs-on: ubuntu-latest
25+
steps:
26+
# (Optional) GitHub Enterprise requires GHE_HOST variable set
27+
#- name: Set GHE_HOST
28+
# run: |
29+
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
30+
31+
# Drafts your next Release notes as Pull Requests are merged into "master"
32+
- uses: release-drafter/release-drafter@v5
33+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
34+
# with:
35+
# config-name: my-config.yml
36+
# disable-autolabeler: true
37+
with:
38+
config-file-path: release-drafter.yml
39+
env:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

โ€Ž.github/workflows/release.ymlโ€Ž

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
ย (0)