From 30b1df58b8452dae95f2933420268d6cc2a0f0a6 Mon Sep 17 00:00:00 2001 From: Lee Date: Sun, 15 Oct 2023 01:12:54 +0000 Subject: [PATCH] Add config.js --- config.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..7fccc70 --- /dev/null +++ b/config.js @@ -0,0 +1,19 @@ +module.exports = { + "endpoint": "https://gitea.com/api/v1", + "gitAuthor": "Renovate Bot ", + "platform": "gitea", + "onboardingConfigFileName": "renovate.json5", + "autodiscover": true, + "autodiscoverFilter": ["fascinated/*"], + "optimizeForDisabled": true, + "forkProcessing": "disabled", + "dryRun": null, + "binarySource": "install", + "hostRules": [ + { + "matchHost": "docker.io", + "username": process.env.HUB_DOCKER_COM_USER, + "password": process.env.HUB_DOCKER_COM_TOKEN + } + ] +};