chore: improve generated changelog
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Robert Kaussow 2021-05-09 22:42:33 +02:00
parent 3ac1fe4563
commit e6b0b52058
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
3 changed files with 16 additions and 4 deletions

View File

@ -6,10 +6,14 @@
{{ range .CommitGroups -}} {{ range .CommitGroups -}}
### {{ .Title }} ### {{ .Title }}
{{ $subjects := list }}
{{ range .Commits -}} {{ range .Commits -}}
{{ if not (has .Subject $subjects) -}}
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} - {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
{{ $subjects = append $subjects .Subject -}}
{{ end }} {{ end }}
{{ end -}} {{- end }}
{{- end -}}
{{- if .NoteGroups -}} {{- if .NoteGroups -}}
{{ range .NoteGroups -}} {{ range .NoteGroups -}}

View File

@ -55,15 +55,22 @@ steps:
depends_on: depends_on:
- dryrun - dryrun
- name: changelog - name: changelog-generate
image: thegeeklab/git-chglog image: thegeeklab/git-chglog
commands: commands:
- git fetch -tq - git fetch -tq
- git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased} - git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
depends_on: depends_on:
- tags - tags
- name: changelog-format
image: thegeeklab/alpine-tools
commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
depends_on:
- changelog-generate
- name: publish-dockerhub - name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20 image: thegeeklab/drone-docker-buildx:20
settings: settings:
@ -188,6 +195,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: ce2b28c322632432c5e4f9cbe94196707d2cea036b05186a85453cb728cbbcb0 hmac: d2b2feacbb2ca973fb5f235468f225cb7561ad2a6278df29d58cbdfb644cf8a3
... ...

View File

@ -1 +1,2 @@
.drone.yml .drone.yml
*.tpl.md