forked from dagger/dagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.changie.yaml
44 lines (44 loc) · 1.12 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
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: |
{{- $lines := .Body | splitn "\n" 2 -}}
- {{ $lines._0 | trimSuffix "." }} by @{{.Custom.Author}} in https://github.com/dagger/dagger/pull/{{.Custom.PR}}
{{- with $lines._1 -}}
{{ " " }}\{{ "\n" }}
{{- . | trim | indent 2 }}
{{- end -}}
body:
block: true
custom:
- key: PR
label: GitHub PR
type: int
- key: Author
label: GitHub Author
type: string
kinds:
- label: Breaking
format: '### 🔥 Breaking Changes'
- label: Added
- label: Changed
- label: Deprecated
- label: Removed
- label: Fixed
- label: Security
- label: Dependencies
footerFormat: |
### What to do next?
- Read the [documentation](https://docs.dagger.io)
- Join our [Discord server](https://discord.gg/dagger-io)
- Follow us on [Twitter](https://twitter.com/dagger_io)
newlines:
beforeChangelogVersion: 3
afterVersion: 1
beforeKind: 1
beforeFooterTemplate: 1
envPrefix: CHANGIE_