-
Notifications
You must be signed in to change notification settings - Fork 5
/
release-drafter.yml
66 lines (62 loc) · 1.42 KB
/
release-drafter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
categories:
- title: "⚠️ Breaking changes"
labels:
- "kind/major"
- "kind/breaking-change"
- title: "🚀 Features"
labels:
- "kind/enhancement"
- "kind/feature"
- title: "🐛 Bug Fixes"
labels:
- "kind/bug"
- title: "🧰 Maintenance"
labels:
- "kind/chore"
- "area/dependencies"
exclude-labels:
- duplicate
- invalid
- later
- wontfix
- kind/question
- release/skip-changelog
change-template: "- $TITLE (#$NUMBER)"
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
name-template: "v$RESOLVED_VERSION"
template: |
$CHANGES
autolabeler:
# Tag any PR with "!" in the subject as major update. In other words, breaking change
- label: "kind/breaking-change"
title: "/.*!:.*/"
- label: "area/dependencies"
title: "chore(deps)"
- label: "area/dependencies"
title: "fix(deps)"
- label: "area/dependencies"
title: "build(deps)"
- label: "kind/feature"
title: "feat"
- label: "kind/bug"
title: "fix"
- label: "kind/chore"
title: "chore"
version-resolver:
major:
labels:
- "kind/major"
- "kind/breaking-change"
minor:
labels:
- "kind/minor"
- "kind/feature"
- "kind/enhancement"
patch:
labels:
- "kind/patch"
- "kind/fix"
- "kind/bug"
- "kind/chore"
- "area/dependencies"
default: patch