From b02567c4a5a7cb03d12006c78a35d03ed48d5ee0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 21:02:38 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F:=20migrate=20config=20.g?= =?UTF-8?q?ithub/renovate.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/renovate.json | 43 +++++++++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 1990de6..bef5a6c 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,13 +2,19 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "rebaseWhen": "behind-base-branch", "dependencyDashboard": true, - "labels": ["dependencies", "no-stale"], + "labels": [ + "dependencies", + "no-stale" + ], "commitMessagePrefix": "⬆️", "commitMessageTopic": "{{depName}}", "customManagers": [ { "customType": "regex", - "fileMatch": ["/Dockerfile$", "/build.yaml$"], + "managerFilePatterns": [ + "//Dockerfile$/", + "//build.yaml$/" + ], "matchStringsStrategy": "any", "matchStrings": [ "ARG BUILD_FROM=(?.*?):(?.*?)\\s+", @@ -18,7 +24,9 @@ }, { "customType": "regex", - "fileMatch": ["/Dockerfile$"], + "managerFilePatterns": [ + "//Dockerfile$/" + ], "matchStringsStrategy": "any", "matchStrings": [ "\\s\\s(?[a-z0-9][a-z0-9-_]+)=(?[a-z0-9-_.]+)\\s+" @@ -29,7 +37,9 @@ }, { "customType": "regex", - "fileMatch": ["/Dockerfile$"], + "managerFilePatterns": [ + "//Dockerfile$/" + ], "matchStrings": [ "ARG BOOKSTACK_VERSION=[\"']?(?.+?)[\"']?\\s+" ], @@ -40,23 +50,36 @@ ], "packageRules": [ { - "matchDatasources": ["repology"], + "matchDatasources": [ + "repology" + ], "automerge": true }, { "groupName": "PHP", - "matchDatasources": ["repology"], + "matchDatasources": [ + "repology" + ], "automerge": true, - "matchDepNames": ["/alpine.*/php.*/"] + "matchDepNames": [ + "/alpine.*/php.*/" + ] }, { "groupName": "Add-on base image", - "matchDatasources": ["docker"] + "matchDatasources": [ + "docker" + ] }, { "groupName": "Add-on base image", - "matchDatasources": ["docker"], - "matchUpdateTypes": ["minor", "patch"], + "matchDatasources": [ + "docker" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], "automerge": true } ] From 0e4f6c9a455b091969a6d2cfba4b9cd5787d11fb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Fri, 24 Oct 2025 21:03:10 +0000 Subject: [PATCH 2/2] Prettified Code! --- .github/renovate.json | 43 ++++++++++--------------------------------- 1 file changed, 10 insertions(+), 33 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index bef5a6c..bc54bc4 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,19 +2,13 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "rebaseWhen": "behind-base-branch", "dependencyDashboard": true, - "labels": [ - "dependencies", - "no-stale" - ], + "labels": ["dependencies", "no-stale"], "commitMessagePrefix": "⬆️", "commitMessageTopic": "{{depName}}", "customManagers": [ { "customType": "regex", - "managerFilePatterns": [ - "//Dockerfile$/", - "//build.yaml$/" - ], + "managerFilePatterns": ["//Dockerfile$/", "//build.yaml$/"], "matchStringsStrategy": "any", "matchStrings": [ "ARG BUILD_FROM=(?.*?):(?.*?)\\s+", @@ -24,9 +18,7 @@ }, { "customType": "regex", - "managerFilePatterns": [ - "//Dockerfile$/" - ], + "managerFilePatterns": ["//Dockerfile$/"], "matchStringsStrategy": "any", "matchStrings": [ "\\s\\s(?[a-z0-9][a-z0-9-_]+)=(?[a-z0-9-_.]+)\\s+" @@ -37,9 +29,7 @@ }, { "customType": "regex", - "managerFilePatterns": [ - "//Dockerfile$/" - ], + "managerFilePatterns": ["//Dockerfile$/"], "matchStrings": [ "ARG BOOKSTACK_VERSION=[\"']?(?.+?)[\"']?\\s+" ], @@ -50,36 +40,23 @@ ], "packageRules": [ { - "matchDatasources": [ - "repology" - ], + "matchDatasources": ["repology"], "automerge": true }, { "groupName": "PHP", - "matchDatasources": [ - "repology" - ], + "matchDatasources": ["repology"], "automerge": true, - "matchDepNames": [ - "/alpine.*/php.*/" - ] + "matchDepNames": ["/alpine.*/php.*/"] }, { "groupName": "Add-on base image", - "matchDatasources": [ - "docker" - ] + "matchDatasources": ["docker"] }, { "groupName": "Add-on base image", - "matchDatasources": [ - "docker" - ], - "matchUpdateTypes": [ - "minor", - "patch" - ], + "matchDatasources": ["docker"], + "matchUpdateTypes": ["minor", "patch"], "automerge": true } ]