Skip to content

Commit eab6cb5

Browse files
committed
chore: update of common config files
1 parent fe379b2 commit eab6cb5

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

.github/auto-labeler-config.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
conventional-commits:
3+
- type: 'fix'
4+
nouns: ['FIX', 'Fix', 'fix', 'FIXED', 'Fixed', 'fixed']
5+
labels: ['bug']
6+
- type: 'feature'
7+
nouns: ['FEATURE', 'Feature', 'feature', 'FEAT', 'Feat', 'feat']
8+
labels: ['enhancement']
9+
- type: 'breaking_change'
10+
nouns: ['BREAKING CHANGE', 'BREAKING', 'MAJOR']
11+
labels: ['breaking-change']
12+
- type: 'refactor'
13+
nouns: ['refactor', 'Refactor']
14+
labels: ['refactor']
15+
- type: 'documentation'
16+
nouns: ['docs', 'doc', 'document', 'documentation']
17+
labels: ['documentation']
18+
- type: 'build'
19+
nouns: ['build', 'rebuild']
20+
labels: ['build']
21+
- type: 'config'
22+
nouns: ['config', 'conf', 'configuration', 'configure']
23+
labels: ['config']

.github/release-drafter-config.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
4+
5+
categories:
6+
- title: '💥 Breaking Changes'
7+
labels:
8+
- breaking-change
9+
- title: '💡 New Features'
10+
labels:
11+
- feature
12+
- enhancement
13+
- title: '🐞 Bug Fixes'
14+
labels:
15+
- bug
16+
- fix
17+
- bugfix
18+
- title: '⚙️ Technical Debt'
19+
labels:
20+
- refactor
21+
- title: '📝 Documentation'
22+
labels:
23+
- documentation
24+
25+
change-template: |
26+
- (#$NUMBER) $TITLE by @$AUTHOR
27+
28+
no-changes-template: 'No significant changes'
29+
30+
template: |
31+
## 🚀 Release
32+
33+
### What's Changed
34+
$CHANGES
35+
36+
---
37+
38+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
39+
40+
version-resolver:
41+
major:
42+
labels:
43+
- major
44+
minor:
45+
labels:
46+
- minor
47+
patch:
48+
labels:
49+
- patch
50+
default: patch

0 commit comments

Comments
 (0)