-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.yaml
76 lines (72 loc) · 1.98 KB
/
config.example.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
changelogs:
- kind: github
dir: dist/0.1
formats:
- extension: asciidoc
frontmatters: |
---
title: "{{ .Changelog.Name }}"
date: {{ .Changelog.PublishedAt }}
---
indexfrontmatters: |
---
title: "Index Changelog"
---
- extension: json
- extension: markdown
frontmatters: |
---
title: "{{ .Changelog.Name }}"
date: {{ .Changelog.PublishedAt }}
---
indexfrontmatters: |
---
title: "Index Changelog"
---
spec:
owner: updatecli
repository: udash
versionfilter:
kind: semver
pattern: ~0.1
- kind: github
dir: dist/0.2
formats:
- extension: asciidoc
frontmatters: |
---
title: "{{ .Changelog.Name }}"
date: {{ .Changelog.PublishedAt }}
---
filetemplate: |
{{ .FrontMatters }}
// Disclaimer: this file is generated, do not edit it manually.
---
{{ if .Changelog.DescriptionHTML }}
++++
{{ .Changelog.DescriptionHTML }}
++++
{{ else if .Changelog.Description}}
{{ .Changelog.Description }}
{{ end}}
---
indexfrontmatters: |
---
title: "Index Changelog"
---
indexfiletemplate: |
{{ .FrontMatters }}
// Disclaimer: this file is generated, do not edit it manually.
[cols="1,1,1" options="header" frame="ends" grid="rows"]
|===
| Name | Author | Published Time
{{ range $pos, $release := .Changelogs }}
| link:{{ $release.Tag }}[{{ $release.Name}}{{ if (eq $pos 0) }}(latest){{ end}}] | {{ $release.Author }} | {{ $release.PublishedAt }}
{{ end }}
|===
spec:
owner: updatecli
repository: udash
versionfilter:
kind: semver
pattern: ~0.2