From 8057c00819c3f22fa80ecaafe1b4431a45140ecd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 21:28:33 +0100 Subject: [PATCH] Migrate renovate config (#842) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ⬆️: migrate config .github/renovate.json * Prettified Code! --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] --- .github/renovate.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 4ab9667..3d31932 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -5,8 +5,9 @@ "labels": ["dependencies", "no-stale"], "commitMessagePrefix": "⬆️", "commitMessageTopic": "{{depName}}", - "regexManagers": [ + "customManagers": [ { + "customType": "regex", "fileMatch": ["/Dockerfile$", "/build.yaml$"], "matchStringsStrategy": "any", "matchStrings": [ @@ -16,6 +17,7 @@ "datasourceTemplate": "docker" }, { + "customType": "regex", "fileMatch": ["/Dockerfile$"], "matchStrings": [ "ARG HA_CLI_VERSION=[\"']?(?.+?)[\"']?\\s+" @@ -25,12 +27,14 @@ "versioningTemplate": "loose" }, { + "customType": "regex", "fileMatch": ["/Dockerfile$"], "matchStrings": ["ARG TTYD_VERSION=[\"']?(?.+?)[\"']?\\s+"], "datasourceTemplate": "github-tags", "depNameTemplate": "tsl0922/ttyd" }, { + "customType": "regex", "fileMatch": ["/Dockerfile$"], "matchStringsStrategy": "any", "matchStrings": [ @@ -74,20 +78,20 @@ { "groupName": "Docker", "matchDatasources": ["repology"], - "matchPackagePatterns": ["^alpine_.*/docker.*$"], - "automerge": true + "automerge": true, + "matchPackageNames": ["/^alpine_.*/docker.*$/"] }, { "groupName": "OpenSSL", "matchDatasources": ["repology"], - "matchPackagePatterns": ["^alpine_.*/openssl.*$"], - "automerge": true + "automerge": true, + "matchPackageNames": ["/^alpine_.*/openssl.*$/"] }, { "groupName": "Python", "matchDatasources": ["repology"], - "matchPackagePatterns": ["^alpine_.*/python3(-dev)?$"], - "automerge": true + "automerge": true, + "matchPackageNames": ["/^alpine_.*/python3(-dev)?$/"] } ] }