fix(configs): correct mismatched parentheses in template variables
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[changelog]
|
||||
body = """\
|
||||
{{ get_env(name="PACKAGE_NAME" }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
|
||||
{{ get_env(name="PACKAGE_NAME") }} ({% if version %}{{ version | trim_start_matches(pat="v") }}{% else %}0.0.0-1{% endif %}) unstable; urgency=medium\
|
||||
{% for group, commits in commits | group_by(attribute="group") %}
|
||||
* {{ group | striptags | trim | upper_first }}:\
|
||||
{% for commit in commits %}
|
||||
@@ -8,7 +8,7 @@ body = """\
|
||||
{% endfor %}\
|
||||
{% endfor %}
|
||||
|
||||
-- {{ get_env(name="AUTHOR_NAME" }} <{{ get_env(name="AUTHOR_MAIL" }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
|
||||
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
|
||||
|
||||
"""
|
||||
|
||||
|
Reference in New Issue
Block a user