Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heusel <christian@heusel.eu>2023-10-22 20:37:09 +0200
committerChristian Heusel <christian@heusel.eu>2023-11-20 15:10:48 +0100
commitb7984c6073f07d06896dc5cfbe38cbbd563b078f (patch)
tree3c4fb73fe1daad118ab72d758f929df82f12d846
parent5e3ab4b321072b576ba0e5d8722c39f7a7768911 (diff)
chore(release): allow fixes tags without cluttering the changelog
Signed-off-by: Christian Heusel <christian@heusel.eu>
-rw-r--r--cliff.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliff.toml b/cliff.toml
index ab01a6b..1dcfe92 100644
--- a/cliff.toml
+++ b/cliff.toml
@@ -13,7 +13,7 @@ body = """
{%- if component %}{{ component }}: {% elif commit.scope %}{{ commit.scope }}: {% endif %}
{{- commit.message | upper_first }}
{%- set fixes = commit.footers | filter(attribute="token", value="Fixes") %}
- {%- for fix in fixes %}{{ fix.separator }}{{ fix.value }}{% endfor %}
+ {%- for fix in fixes %}{% if fix.separator == '#' %}{{ fix.separator }}{{ fix.value }}{% endif %}{% endfor %}
{%- endfor %}
{% endfor %}