add onboarding config
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-10-17 11:44:18 +02:00
parent 7620435ad3
commit b811143e9c
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,7 @@ renovatebot_service_stopped: False
# @var renovatebot_interval:description: Interval for the systemd timer.
renovatebot_interval: daily
# @var :description: >
# @var renovatebot_github_token:description: >
# If you are running on any platform except github.com, it's important to also configure
# a personal access token for github.com. It's used when fetching release notes for repositories
# in order to increase the hourly API limit.
@ -20,8 +20,13 @@ renovatebot_autodiscover: False
# @var renovatebot_autodiscover_filter:example: $ "project/*"
# @var renovatebot_autodiscover_filter: $ "_unset_"
renovatebot_repositories: []
renovatebot_endpoint: "https://github.company.com/api/v3"
renovatebot_git_author: "Renovate Bot <bot@renovateapp.com>"
renovatebot_platform: github
# @var renovatebot_token:description: Personal access token for your bot account.
# renovatebot_token: $ "_unset_"
renovatebot_onboarding_config:
extends:
- "config:base"

View File

@ -16,5 +16,6 @@ RENOVATE_AUTODISCOVER={{ renovatebot_autodiscover | bool | lower }}
RENOVATE_AUTODISCOVER_FILTER={{ renovatebot_autodiscover_filter }}
{% endif %}
{% elif renovatebot_repositories | length > 0 %}
RENOVATE_REPOSITORIES={{ renovatebot_repositories | to_json }}
RENOVATE_REPOSITORIES={{ renovatebot_repositories | join(",") }}
{% endif %}
RENOVATE_ONBOARDING_CONFIG={{ renovatebot_onboarding_config | to_json }}