From 0394e4faf80ab77b5710ce65290e2fcf13a0d25e Mon Sep 17 00:00:00 2001 From: Paul Spenke Date: Thu, 2 Apr 2026 22:23:15 +0200 Subject: [PATCH] Switch config.js properties to use quoted keys and update stabilityDays to minimumReleaseAge --- config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/config.js b/config.js index 145c623..ebe6e1d 100644 --- a/config.js +++ b/config.js @@ -1,14 +1,14 @@ module.exports = { - endpoint: "https://gitea.spenke-nordic.com/api/v1", // replace it with your actual endpoint - gitAuthor: "Renovate Bot ", - platform: "gitea", - onboardingConfigFileName: "renovate.json", - autodiscover: true, - optimizeForDisabled: true, - dependencyDashboard: true, - dependencyDashboardTitle: "Dependency Dashboard", - prConcurrentLimit: 10, - prHourlyLimit: 0, - stabilityDays: 3, - labels: ["dependencies", "renovate"], + "endpoint": "https://gitea.spenke-nordic.com/api/v1", + "gitAuthor": "Renovate Bot ", + "platform": "gitea", + "onboardingConfigFileName": "renovate.json", + "autodiscover": true, + "optimizeForDisabled": true, + "dependencyDashboard": true, + "dependencyDashboardTitle": "Dependency Dashboard", + "prConcurrentLimit": 10, + "prHourlyLimit": 0, + "minimumReleaseAge": "3 days", + "labels": ["dependencies", "renovate"] };