-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy path.changie.yaml
38 lines (37 loc) · 943 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
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
changesDir: .changes
unreleasedDir: unreleased
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.VersionNoPrefix}} ({{.Time.Format "02 January 2006"}})'
kindFormat: '{{.Kind}}:'
changeFormat: '* {{.Body}} ([{{- if not (eq .Custom.Repository "terraform-ls")}}{{.Custom.Repository}}{{- end}}#{{.Custom.Issue}}](https://github.com/hashicorp/{{.Custom.Repository}}/issues/{{.Custom.Issue}}))'
custom:
- key: Repository
label: Repository
type: enum
enumOptions:
- terraform-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_