ansible-role-renovate/templates/srv/docker/renovate/config.json.j2
Markus Pesch 2b7dd6b706
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2022-04-27 18:55:07 +02:00

11 lines
234 B
Django/Jinja

#jinja2: lstrip_blocks: "True", trim_blocks: "True"
{
{% for key, value in renovate_config.items() %}
{% if value | bool %}
"{{ key }}": {{ value | lower }},
{% else %}
"{{ key }}": "{{ value }}",
{% endif %}
{% endfor %}
}