From 6d984287bb8c4d301fda11cdbaeb08025b073472 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 23 Oct 2024 22:34:01 +0200 Subject: [PATCH] chore(config): migrate renovate config (#218) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions). --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://git.mgrote.net/mg/homeserver/pulls/218 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- renovate.json | 88 +++++++++++++++++++++++++++++++++------------------ 1 file changed, 57 insertions(+), 31 deletions(-) diff --git a/renovate.json b/renovate.json index 6de74d4e..b68ecc39 100644 --- a/renovate.json +++ b/renovate.json @@ -1,35 +1,61 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], - "ignorePaths": ["**/friedhof/**"], - "regexManagers": [{ - "fileMatch": ["blocky.yml$"], - "matchStrings": [ - "blocky_version: (?v[\\d.]+)" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "0xERR0R/blocky" - }, - { - "fileMatch": ["pve.yml$"], - "matchStrings": [ - "cv4pve_version: (?v[\\d.]+)" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "Corsinvest/cv4pve-autosnap" - } + "extends": [ + "config:recommended" ], - "packageRules": [{ - "matchDatasources": ["github-releases"], - "matchDepNames": ["0xERR0R/blocky"], - "matchUpdateTypes": ["minor", "patch"], - "automerge": true - }, - { - "matchDatasources": ["github-releases"], - "matchDepNames": ["Corsinvest/cv4pve-autosnap"], - "matchUpdateTypes": ["minor", "patch"], - "automerge": true - } - ] + "ignorePaths": [ + "**/friedhof/**" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": [ + "blocky.yml$" + ], + "matchStrings": [ + "blocky_version: (?v[\\d.]+)" + ], + "datasourceTemplate": "github-releases", + "depNameTemplate": "0xERR0R/blocky" + }, + { + "customType": "regex", + "fileMatch": [ + "pve.yml$" + ], + "matchStrings": [ + "cv4pve_version: (?v[\\d.]+)" + ], + "datasourceTemplate": "github-releases", + "depNameTemplate": "Corsinvest/cv4pve-autosnap" + } + ], + "packageRules": [ + { + "matchDatasources": [ + "github-releases" + ], + "matchDepNames": [ + "0xERR0R/blocky" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "automerge": true + }, + { + "matchDatasources": [ + "github-releases" + ], + "matchDepNames": [ + "Corsinvest/cv4pve-autosnap" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "automerge": true + } + ] }