mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-08 14:21:05 +00:00
aee46dd678
- Replace hecrj/setup-rust-action with actions-rs tools - Add a Cargo Audit test step - Move cargo publish step from Azure Pipelines to GitHub Actions - Use cargo-publish-all to publish multiple packages at once - Automate the creation of release notes
30 lines
619 B
Markdown
Executable File
30 lines
619 B
Markdown
Executable File
{{ range .Versions }}
|
|
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]({{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}){{ else }}{{ .Tag.Name }}{{ end }} ({{ datetime "2006-01-02" .Tag.Date }})
|
|
|
|
{{ range .CommitGroups -}}
|
|
### {{ .Title }}
|
|
|
|
{{ range .Commits -}}
|
|
* {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
|
|
{{ end }}
|
|
{{ end -}}
|
|
|
|
{{- if .RevertCommits -}}
|
|
### Reverts
|
|
|
|
{{ range .RevertCommits -}}
|
|
* {{ .Revert.Header }}
|
|
{{ end }}
|
|
{{ end -}}
|
|
|
|
{{- if .NoteGroups -}}
|
|
{{ range .NoteGroups -}}
|
|
### {{ .Title }}
|
|
|
|
{{ range .Notes }}
|
|
{{ .Body }}
|
|
{{ end }}
|
|
{{ end -}}
|
|
{{ end -}}
|
|
{{ end -}}
|