Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/cliff.toml
diff options
context:
space:
mode:
Diffstat (limited to 'cliff.toml')
-rw-r--r--cliff.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliff.toml b/cliff.toml
index 1dcfe92..9ffaa9e 100644
--- a/cliff.toml
+++ b/cliff.toml
@@ -9,7 +9,7 @@ body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits | sort(attribute="message") %}
- - {% set component = commit.footers | filter(attribute="token", value="Component") | map(attribute="value") | join %}
+ - {% set component = commit.footers | filter(attribute="token", value="Component") | map(attribute="value") | join(sep=", ") %}
{%- if component %}{{ component }}: {% elif commit.scope %}{{ commit.scope }}: {% endif %}
{{- commit.message | upper_first }}
{%- set fixes = commit.footers | filter(attribute="token", value="Fixes") %}