24 lines
872 B
JavaScript
24 lines
872 B
JavaScript
// https://docs.renovatebot.com/self-hosted-configuration/#onboarding
|
|
module.exports = {
|
|
"endpoint": "https://git.svc.hel1.obx/api/v1",
|
|
"gitAuthor": "Renovate Bot <renovate-bot@oceanbox.io>",
|
|
"platform": "gitea",
|
|
"onboardingConfigFileName": "renovate.json",
|
|
"autodiscover": true, // automatically go over all repos on this server
|
|
"onboarding": false, // need to manually create renovate.json
|
|
"requireConfig": "required", // do not run on repos which don't have a config file
|
|
"optimizeForDisabled": true,
|
|
"osvVulnerabilityAlerts": true,
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true
|
|
}
|
|
// https://docs.renovatebot.com/docker/#registry-authentication
|
|
// "hostRules": [
|
|
// {
|
|
// "matchHost": "https://docker.io",
|
|
// "username": process.env.DOCKER_HUB_USERNAME,
|
|
// "password": process.env.DOCKER_HUB_PASSWORD,
|
|
// },
|
|
// ],
|
|
};
|