xoxys.renovate_bot/templates/etc/sysconfig/renovate.j2

22 lines
785 B
Plaintext
Raw Normal View History

2020-10-10 10:03:50 +02:00
#jinja2:lstrip_blocks: True
{{ ansible_managed | comment }}
2020-10-10 14:15:24 +02:00
{% if renovatebot_github_token is defined %}
2020-10-10 15:01:49 +02:00
GITHUB_COM_TOKEN={{ renovatebot_github_token }}
2020-10-11 22:16:17 +02:00
2020-10-10 14:03:07 +02:00
{% endif %}
2020-10-10 15:01:49 +02:00
RENOVATE_ENDPOINT={{ renovatebot_endpoint }}
RENOVATE_GIT_AUTHOR={{ renovatebot_git_author }}
RENOVATE_PLATFORM={{ renovatebot_platform }}
RENOVATE_TOKEN={{ renovatebot_token }}
2020-10-11 22:16:17 +02:00
RENOVATE_AUTODISCOVER={{ renovatebot_autodiscover | bool | lower }}
{% if renovatebot_autodiscover | bool %}
{% if renovatebot_autodiscover_filter is defined %}
RENOVATE_AUTODISCOVER_FILTER={{ renovatebot_autodiscover_filter }}
{% endif %}
{% elif renovatebot_repositories | length > 0 %}
2020-10-17 11:44:18 +02:00
RENOVATE_REPOSITORIES={{ renovatebot_repositories | join(",") }}
2020-10-11 22:16:17 +02:00
{% endif %}
2020-10-17 11:44:18 +02:00
RENOVATE_ONBOARDING_CONFIG={{ renovatebot_onboarding_config | to_json }}