Skip to content

Commit 08dca13

Browse files
authored
Merge pull request #19 from LeoAndo/feature/automatically-generated-release-notes2
リリースノート自動作成機能を追加
2 parents c68de8a + 2857864 commit 08dca13

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# https://docs.github.com/ja/repositories/releasing-projects-on-github/automatically-generated-release-notes
2+
changelog:
3+
exclude:
4+
authors:
5+
- github-actions
6+
labels:
7+
- ignore-for-release
8+
categories:
9+
- title: New Features 🎉
10+
labels:
11+
- "enhancement"
12+
- title: Bug Fix 💊
13+
labels:
14+
- "bug"
15+
- title: Other Changes 🛠
16+
labels:
17+
- "*"

.github/workflows/automatically_labeling_pr.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@ jobs:
2323
label_name=$(echo "enhancement")
2424
elif [ $branch_type == 'fix' ] || [ $branch_type == 'hotfix' ]; then
2525
label_name=$(echo "bug")
26-
elif [ $branch_type == 'release' ]; then
27-
label_name=$(echo "release")
2826
else
29-
label_name=""
27+
label_name=$(echo "ignore-for-release")
3028
fi
3129
echo "::set-output name=label_name::$label_name"
3230

0 commit comments

Comments
 (0)