fix(configs): correct environment variable for author email

- Replaces incorrect `AUTHOR_MAIL` with `AUTHOR_EMAIL` in template
- Ensures proper environment variable usage for email retrieval
This commit is contained in:
2025-06-27 22:48:21 +02:00
parent 2367a41cc6
commit fba5c57fd4

View File

@@ -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_EMAIL") }}> {% 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 %}
"""