From 922e2def573b22a36e8970e218101dc39e3617ab Mon Sep 17 00:00:00 2001 From: Renovate Date: Fri, 13 Feb 2026 12:59:25 +0000 Subject: [PATCH] Add config.js --- config.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..98bfec3 --- /dev/null +++ b/config.js @@ -0,0 +1,32 @@ +// config.js +module.exports = { + prConcurrentLimit: 5, + + // Control concurrent branches (defaults to prConcurrentLimit if not set) + branchConcurrentLimit: 10, + endpoint: "https://gitea.jleibl.net/api/v1/", + platform: "gitea", + gitAuthor: "Renovate ", + + // --- Caching --- + // Explicitly enable caching (good practice, though often default) + // persistCache: true, + // Use the default cache directory which we will map in the Action + // cacheDir: "/tmp/renovate-cache", // Default, usually no need to set + + // --- Discovery --- + autodiscover: true, // Kept as per your requirement + + // --- Onboarding --- + // Ensure new repos get the standard config + onboardingConfig: { + extends: ["local>Renovate/renovate-config"], + }, + + // --- Important Note --- + // For major speedups, optimize rules within your 'local>Renovate/renovate-config' preset: + // - Use `packageRules` to group related dependencies (`groupName`). + // - Consider adding `skipInstalls: true` globally or via `packageRules` if possible. + // - Add rules to ignore specific dependencies (`ignoreDeps` or `enabled: false`). + // - Limit update types (`matchUpdateTypes`) where applicable. +};