-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.changie.yaml
More file actions
32 lines (31 loc) · 803 Bytes
/
.changie.yaml
File metadata and controls
32 lines (31 loc) · 803 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
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '* {{.Body}}'
kinds:
- label: Breaking Change
auto: major
- label: Enhancement or New Feature
auto: minor
- label: Under the Hood
auto: patch
- label: Bug Fix
auto: patch
- label: Security
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
envPrefix: CHANGIE_
replacements:
- path: pyproject.toml
find: '(?m)^version = ".*"'
replace: 'version = "{{.VersionNoPrefix}}"'
- path: agent_actions/__version__.py
find: '(?m)^__version__ = ".*"'
replace: '__version__ = "{{.VersionNoPrefix}}"'