This commit is contained in:
parent
ba9aeb48fd
commit
e5a3b030bb
1 changed files with 26 additions and 10 deletions
30
config.js
30
config.js
|
@ -1,12 +1,28 @@
|
||||||
|
// config.js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
endpoint: 'https://git.kjan.de/api/v1/',
|
endpoint: "https://git.kjan.de/api/v1/",
|
||||||
platform: 'gitea',
|
platform: "gitea",
|
||||||
gitAuthor: "Renovate <renovate@kjan.de>",
|
gitAuthor: "Renovate <renovate@kjan.de>",
|
||||||
persistRepoData: true,
|
|
||||||
|
// --- 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: {
|
onboardingConfig: {
|
||||||
'extends': [
|
extends: ["local>Renovate/renovate-config"],
|
||||||
"local>Renovate/renovate-config"
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
autodiscover: true,
|
|
||||||
|
// --- 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.
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue