Skip to content

Commit 447d736

Browse files
committed
chore: Add commit_log_patterns to changelog config, remove auto-labeler
1 parent de0263f commit 447d736

File tree

2 files changed

+10
-77
lines changed

2 files changed

+10
-77
lines changed

.github/release.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This configuration is used by Craft to categorize changelog entries based on
2-
# PR labels. To avoid some manual work, there is a PR labeling GitHub action in
3-
# .github/workflows/pr-labeler.yml that adds a changelog label to PRs based on
4-
# the title.
5-
61
changelog:
72
exclude:
83
labels:
@@ -16,19 +11,29 @@ changelog:
1611
- Feature
1712
- Improvement
1813
- New Integration
14+
commit_log_patterns:
15+
- "^feat(\(\w+\))?:"
1916
- title: Bug Fixes 🐛
2017
labels:
2118
- "Changelog: Bugfix"
2219
- Bug
20+
commit_log_patterns:
21+
- "^(fix|bugfix)(\(\w+\))?:"
2322
- title: Deprecations 🏗️
2423
labels:
2524
- "Changelog: Deprecation"
25+
commit_log_patterns:
26+
- "deprecat" # deprecation, deprecated
2627
- title: Documentation 📚
2728
labels:
2829
- "Changelog: Docs"
2930
- Docs
3031
- "Component: Docs"
32+
commit_log_patterns:
33+
- "^docs(\(\w+\))?:"
3134
- title: Internal Changes 🔧
3235
labels:
3336
- "Changelog: Internal"
3437
- Quality Improvement
38+
commit_log_patterns:
39+
- "^(build|ref|chore|ci|tests)(\(\w+\))?:"

.github/workflows/pr-labeler.yml

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

0 commit comments

Comments
 (0)