-
Notifications
You must be signed in to change notification settings - Fork 4
/
.changie.yaml
48 lines (48 loc) · 1.12 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
# docs: https://changie.dev/config/
---
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "January 02, 2006"}}'
kindFormat: "### {{.Kind}}"
changeFormat: "* [#{{.Custom.Issue}}](https://github.com/{{.Env.GITHUB_REPOSITORY}}/issues/{{.Custom.Issue}}) {{.Body}}"
kinds:
- label: 💥 Breaking
key: breaking
# auto: major
- label: ✨ Added
key: added
# auto: minor
- label: 💫 Changed
key: changed
# auto: minor
- label: ⚰️ Deprecated
key: deprecated
# auto: minor
- label: 🗑️ Removed
key: removed
# auto: major
- label: 🪲 Fixed
key: fixed
# auto: patch
- label: 🚨 Security
key: security
# auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
afterKind: 1
beforeKind: 1
envPrefix: CHANGIE_
custom:
- key: Issue
label: Issue/PR Number
type: int
minInt: 1
replacements:
- path: ./examples/provider/provider.tf
find: ' version = ".*"'
replace: ' version = "{{.VersionNoPrefix}}"'