From 16a0bc5a82b1b386ed4c9ffd7cedd4505b21ae3a Mon Sep 17 00:00:00 2001 From: WrenIX Date: Thu, 22 Aug 2024 18:53:14 +0200 Subject: [PATCH] fix: improve config after time/major --- config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/config.js b/config.js index 10a45f8..7862b61 100644 --- a/config.js +++ b/config.js @@ -1,13 +1,15 @@ module.exports = { "globalExtends": [ - "config:base", + "config:recommended", ":semanticCommitTypeAll(fix)", - ":disableRateLimiting" + ":disableRateLimiting", + "customManagers:dockerfileVersions", + "customManagers:helmChartYamlAppVersions" ], "endpoint": "https://codeberg.org/api/v1", "platform": "gitea", "githubTokenWarn": false, - "automerge": true, + "automerge": false, "gitAuthor": "Renovate Bot ", "commitMessageAction": "update", @@ -17,6 +19,7 @@ module.exports = { "requireConfig": "ignored", "onboarding": true, + "dependencyDashboard": true, "autodiscover": true, "autodiscoverFilter": [ "wrenix/*" @@ -28,19 +31,16 @@ module.exports = { "password": process.env.RENOVATE_TOKEN } ], + "packageRules": [{ + "matchUpdateTypes": [ "minor", "patch" ], + "matchCurrentVersion": ">=1.0.0", + "automerge": true + }], "flux": { "fileMatch": [ "release.*\\.yaml$", "kustomization.*\\.yaml$" ] - }, - "customManagers": [{ - "customType": "regex", - "datasourceTemplate": "docker", - "fileMatch": ["(^|/)Chart\\.yaml$"], - "matchStrings": [ - "#\\s?renovate: image=(?.*?)\\s?appVersion:\\s?\\\"?(?[\\w+\\.\\-]*)\"" - ] - }] + } };