-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.changie.yaml
More file actions
44 lines (44 loc) · 954 Bytes
/
.changie.yaml
File metadata and controls
44 lines (44 loc) · 954 Bytes
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
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.md
changelogPath: CHANGELOG.md
versionHeaderPath: ""
versionFooterPath: ""
versionExt: md
envPrefix: CHANGIE
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '#### {{.Kind}}'
changeFormat: |-
##### {{(splitn "\n" 2 .Body)._0}}
{{with (splitn "\n" 2 .Body)._1 | default "" | trim}}
{{.}}
{{end}}
body:
block: true
minLength: 1
kinds:
- label: Added
auto: minor
- label: Changed
auto: patch
- label: Deprecated
auto: patch
- label: Fixed
auto: patch
- label: Performance
auto: patch
- label: Removed
auto: patch
- label: Reverted
auto: patch
- label: Dependencies
auto: patch
- label: Security
auto: patch
newlines:
afterChangelogHeader: 1
afterChangelogVersion: 1
afterKind: 1
afterVersion: 1
beforeKind: 1
endOfVersion: 1