-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.changie.yaml
48 lines (48 loc) · 1.38 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
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '* {{.Body}}'
body:
block: true
# All changes specify auto as 'patch' to avoid unintentional major or minor
# version bumps as those are handled manually.
kinds:
- label: Added
auto: patch
- label: Changed
auto: patch
- label: Deprecated
auto: patch
- label: Removed
auto: patch
- label: Fixed
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
envPrefix: CHANGIE_
# Project keys and version separators are configured to align with the tagging
# semantics of multi-module repositories. `dir/of/module/v<version>`
# https://go.dev/wiki/Modules#what-are-multi-module-repositories
projectsVersionSeparator: "/"
projects:
- label: Redpanda Operator
key: operator
changelog: operator/CHANGELOG.md
- label: Redpanda Helm Chart
key: charts/redpanda
changelog: charts/redpanda/CHANGELOG.md
- label: Console Helm Chart
key: charts/console
changelog: charts/console/CHANGELOG.md
- label: Connectors Helm Chart
key: charts/connectors
changelog: charts/connectors/CHANGELOG.md
- label: Redpanda Operator Helm Chart
key: charts/operator
changelog: charts/operator/CHANGELOG.md