-
Notifications
You must be signed in to change notification settings - Fork 1
/
.changie.yaml
45 lines (44 loc) · 1.09 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
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.VersionNoPrefix}} ({{.Time.Format "2006-01-02"}})'
kindFormat: '{{.Kind}}:'
changeFormat: |-
* {{.Body}} ([{{- if not (eq .Custom.Repository "vscode-opentofu")}}{{.Custom.Repository}}{{- end}}#{{.Custom.Issue}}](https://github.com/hashicorp/{{.Custom.Repository}}/issues/{{.Custom.Issue}}))
custom:
- key: Repository
label: Repository
type: enum
enumOptions:
- vscode-opentofu
- opentofu-ls
- terraform-schema
- hcl-lang
- key: Issue
label: Issue/PR Number
type: int
minInt: 1
kinds:
- label: ENHANCEMENTS
auto: minor
- label: BUG FIXES
auto: patch
- label: INTERNAL
auto: patch
- label: NOTES
auto: patch
- label: BREAKING CHANGES
auto: minor
newlines:
afterKind: 1
beforeKind: 1
endOfVersion: 2
envPrefix: CHANGIE_
replacements:
- path: package.json
find: ' "version": ".*",'
replace: ' "version": "{{.VersionNoPrefix}}",'