-
Notifications
You must be signed in to change notification settings - Fork 3
/
.changie.yaml
71 lines (69 loc) · 1.58 KB
/
.changie.yaml
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
67
68
69
70
71
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: ''
changeFormat: '- _{{.KindLabel}}_: {{ .Body -}}'
body:
block: true
kinds:
- label: 🤖 CI & Build
auto: patch
key: ci-build
- label: 🎉 New Product Feature
auto: minor
key: new-product-feature
- label: ⬇️ Deprecated
auto: minor
key: deprecated
- label: 🧪 Tests
auto: patch
key: tests
- label: 🔨 Refactor
auto: patch
key: refactor
- label: 🐛 Bug Fix
auto: patch
key: bug-fix
- label: 🔥 Breaking Change
auto: minor
key: breaking-change
- label: 🔒 Security
auto: patch
key: security
- label: ⬆️ Dependencies
auto: patch
key: dependencies
- label: 🔥 Major Version Change (Breaking Changes)
auto: major
key: major-version-change
newlines:
afterChange: 0
afterChangelogHeader: 1
afterChangelogVersion: 1
afterComponent: 1
afterFooterFile: 1
afterFooter: 1
afterHeaderFile: 1
afterHeaderTemplate: 1
afterKind: 1
afterVersion: 1
beforeChange: 0
beforeChangelogVersion: 0
beforeComponent: 0
beforeFooterFile: 0
beforeFooterTemplate: 0
beforeHeaderFile: 0
beforeHeaderTemplate: 0
beforeKind: 1
beforeVersion: 0
endOfVersion: 0
replacements:
- path: 'charts/dsv-k8s-controller/Chart.yaml'
find: 'version: .*'
replace: 'version: {{.Version}}'
- path: 'charts/dsv-k8s-sidecar/Chart.yaml'
find: 'version: .*'
replace: 'version: {{.Version}}'