-
Notifications
You must be signed in to change notification settings - Fork 3
/
.changie.yaml
83 lines (79 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '- {{ .Body -}}'
footerFormat: |
{{- $azureBoardsFixed := customs .Changes "azure-boards-workitemid-fixed" | compact | uniq }}
{{ $azureBoardsRelated := customs .Changes "azure-boards-workitemid-related" | compact | uniq }}
{{ $GitHubLinks := customs .Changes "github-link" | compact | uniq }}
{{ $GitHubContributors := customs .Changes "github-contributor" | compact | uniq -}}
### Related
{{ range $azureBoardsFixed }}
- fixes AB#{{.}}
{{- end -}}
{{ range $azureBoardsRelated }}
- related AB#{{.}}
{{- end -}}
{{ range $GitHubLinks }}
- <{{.}}>
{{- end }}
{{ with $GitHubContributors }}
### Contributors
{{ range $GitHubContributors }}
- [{{.}}](https://github.com/{{.}})
{{ end }}
{{ end }}
kinds:
- label: 🎉 Feature
- label: 🔨 Refactor
- label: ⬇️ Deprecated
- label: 🐛 Bug Fix
- label: 🔥 Breaking Change
- label: 🔒 Security
- label: ⬆️ Dependencies
- label: 🤖 Development
newlines:
afterChange: 0
afterChangelogHeader: 1
afterChangelogVersion: 1
afterComponent: 1
afterFooterFile: 1
afterFooter: 1
afterHeaderFile: 1
afterHeaderTemplate: 1
afterKind: 1
afterVersion: 1
beforeChange: 0
beforeChangelogVersion: 0
beforeComponent: 0
beforeFooterFile: 0
beforeFooterTemplate: 0
beforeHeaderFile: 0
beforeHeaderTemplate: 0
beforeKind: 0
beforeVersion: 0
endOfVersion: 0
custom:
- key: github-contributor
type: string
minLength: 3
optional: true
- key: github-link
label: GitHub Link
type: string
minLength: 3
optional: true
- key: azure-boards-workitemid-fixed
label: FIXED Azure Boards WorkItem ID
type: int
minLength: 6
optional: true
- key: azure-boards-workitemid-related
label: Related Azure Boards WorkItem ID
type: int
minLength: 6
optional: true