21 lines
515 B
Django/Jinja
21 lines
515 B
Django/Jinja
module.exports = {
|
|
username: "renovate",
|
|
token: "{{ secret__renovate_token }}",
|
|
endpoint: "https://git.hamburg.ccc.de/",
|
|
platform: "forgejo",
|
|
persistRepoData: true,
|
|
onboardingConfig: {
|
|
"extends": ["config:recommended"],
|
|
},
|
|
autodiscover: true,
|
|
autodiscoverNamespaces: [
|
|
"CCCHH"
|
|
],
|
|
detectHostRulesFromEnv: false,
|
|
hostRules: [
|
|
{
|
|
matchHost: "api.github.com",
|
|
token: "{{ secret__renovate_github_token }}"
|
|
}
|
|
]
|
|
};
|