chore(release): allow fixes tags without cluttering the changelog

Signed-off-by: Christian Heusel <christian@heusel.eu>
This commit is contained in:
Christian Heusel 2023-10-22 20:37:09 +02:00
parent 5e3ab4b321
commit b7984c6073
No known key found for this signature in database
GPG Key ID: C047D4F328B52585
1 changed files with 1 additions and 1 deletions

View File

@ -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 %}