-
Notifications
You must be signed in to change notification settings - Fork 0
/
.changie.yaml
41 lines (36 loc) · 969 Bytes
/
.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
changelogPath: "CHANGELOG.md"
changesDir: ".changes"
unreleasedDir: "unreleased"
versionExt: "md"
headerPath: "header.tpl.md"
versionFormat: "## {{ .Version }} — {{ .Time.Format \"2006-01-02\" }}"
kindFormat: "### {{ .Kind }}"
changeFormat: "* {{ .Body }}"
newlines:
beforeChangelogVersion: 1
beforeKind: 1
afterKind: 1
endOfVersion: 1
kinds:
- label: "Added"
auto: "minor"
- label: "Changed"
auto: "major"
- label: "Deprecated"
auto: "minor"
- label: "Removed"
auto: "major"
- label: "Fixed"
auto: "patch"
- label: "Security"
auto: "patch"
replacements:
- path: "package.json"
find: "^ \"version\": \".+\""
replace: " \"version\": \"{{ .VersionNoPrefix }}\""
- path: "package-lock.json"
find: "^ \"version\": \".+\""
replace: " \"version\": \"{{ .VersionNoPrefix }}\""
- path: "README.md"
find: "\"camptocamp/setup-dagger@.+\""
replace: "\"camptocamp/setup-dagger@v{{ .Major }}\""