diff --git a/renovate_config.js b/renovate_config.js index 3efb6cf..d5c5db6 100644 --- a/renovate_config.js +++ b/renovate_config.js @@ -1,16 +1,19 @@ +// This file only contains "backend" administration settings for renovate, +// such as where to access the forgejo api etc. +// To configure how renovate creates update PRs, have a look at `renovate.json`. module.exports = { - endpoint: "https://git.local-it.org/api/v1/", - gitAuthor: 'Renovate Bot ', - username: 'renovate', - platform: "gitea", - onboarding: true, - autodiscover: true, - persistRepoData: true, - optimizeForDisabled: true, - assignees: [], - labels: ["renovate", "dependencies", "automated"], - onboardingConfig: { - extends: ["config:recommended"], - }, - repositories: ["local-it/mitgliederverwaltung"] + endpoint: "https://git.local-it.org/api/v1/", + gitAuthor: "Renovate Bot ", + username: "renovate", + platform: "gitea", + onboarding: true, + autodiscover: true, + persistRepoData: true, + optimizeForDisabled: true, + assignees: [], + labels: ["renovate", "dependencies", "automated"], + onboardingConfig: { + extends: ["config:recommended"], + }, + repositories: ["local-it/mitgliederverwaltung"], };