11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
|
#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 %}
|
||
|
}
|