Files
demo/.chglog/CHANGELOG.tpl.md

43 lines
1.1 KiB
Markdown
Raw Normal View History

2025-05-29 11:05:09 +02:00
{{- range .Versions }}
2025-05-28 20:16:08 +02:00
<a name="{{ .Tag.Name }}"></a>
2025-05-29 11:05:09 +02:00
## BlueMastoFeed {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
{{ if .CommitGroups }}
### Changes
{{ range .CommitGroups }}
#### {{ .Title }}
{{ range .Commits }}
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
{{- with .Hash }}[`{{ . | truncate 7 }}`]({{ $.Info.RepositoryURL }}/commit/{{ . }}){{ end }} by @{{ .Author.Name }}
{{ end }}
2025-05-28 20:16:08 +02:00
{{ end }}
{{ end }}
2025-05-29 11:05:09 +02:00
{{ if .MergeCommits }}
2025-05-29 00:44:09 +02:00
### Pull Requests
2025-05-29 11:05:09 +02:00
{{ range .MergeCommits }}
- {{ .Header }}
[`{{ .Hash | truncate 7 }}`]({{ $.Info.RepositoryURL }}/commit/{{ .Hash }}) by @{{ .Author.Name }}
{{ end }}
2025-05-28 20:16:08 +02:00
{{ end }}
2025-05-29 11:05:09 +02:00
{{ if .RevertCommits }}
### Reverts
{{ range .RevertCommits }}
- {{ .Revert.Header }}
[`{{ .Hash | truncate 7 }}`]({{ $.Info.RepositoryURL }}/commit/{{ .Hash }}) by @{{ .Author.Name }}
{{ end }}
{{ end }}
2025-05-28 20:16:08 +02:00
2025-05-29 11:05:09 +02:00
{{ if .NoteGroups }}
### Notes
{{ range .NoteGroups }}
#### {{ .Title }}
2025-05-28 20:16:08 +02:00
{{ range .Notes }}
2025-05-29 11:05:09 +02:00
- {{ .Body }}
{{ end }}
{{ end }}
{{ end }}
2025-05-28 20:16:08 +02:00
{{ end }}