diff options
author | Christian Heusel <christian@heusel.eu> | 2023-10-22 20:37:09 +0200 |
---|---|---|
committer | Christian Heusel <christian@heusel.eu> | 2023-11-20 15:10:48 +0100 |
commit | b7984c6073f07d06896dc5cfbe38cbbd563b078f (patch) | |
tree | 3c4fb73fe1daad118ab72d758f929df82f12d846 /cliff.toml | |
parent | 5e3ab4b321072b576ba0e5d8722c39f7a7768911 (diff) | |
download | devtools-b7984c6073f07d06896dc5cfbe38cbbd563b078f.tar.xz |
chore(release): allow fixes tags without cluttering the changelog
Signed-off-by: Christian Heusel <christian@heusel.eu>
Diffstat (limited to 'cliff.toml')
-rw-r--r-- | cliff.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 %} |