From e0f5dc817ab5ba478f10e1037995edc15717e7fd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 08:45:58 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json --- .github/renovate.json | 58 +++++++++++++++++++++++++++++-------------- 1 file changed, 40 insertions(+), 18 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index d83a035727..dd1ddc3db7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,54 +1,76 @@ { "extends": [ - "config:base", + "config:recommended", "schedule:weekly" ], "dependencyDashboard": true, "rangeStrategy": "update-lockfile", "rebaseWhen": "conflicted", - "baseBranches": ["2.1.x"], + "baseBranches": [ + "2.1.x" + ], "packageRules": [ { - "matchPackagePatterns": ["*"], - "enabled": false + "enabled": false, + "matchPackageNames": [ + "*" + ] }, { - "matchPaths": ["+(composer.json)"], + "matchFileNames": [ + "+(composer.json)" + ], "enabled": true, - "matchBaseBranches": ["2.1.x"] + "matchBaseBranches": [ + "2.1.x" + ] }, { - "matchPaths": ["build-cs/**"], + "matchFileNames": [ + "build-cs/**" + ], "enabled": true, "groupName": "build-cs" }, { - "matchPaths": ["apigen/**"], + "matchFileNames": [ + "apigen/**" + ], "enabled": true, "groupName": "apigen" }, { - "matchPaths": ["issue-bot/**"], - "enabled": true, - "groupName": "issue-bot" + "matchFileNames": [ + "issue-bot/**" + ], + "enabled": true, + "groupName": "issue-bot" }, { - "matchPaths": ["changelog-generator/**"], + "matchFileNames": [ + "changelog-generator/**" + ], "enabled": true, "groupName": "changelog-generator" }, { - "matchPaths": ["compiler/**"], + "matchFileNames": [ + "compiler/**" + ], "enabled": true, "groupName": "compiler" }, { - "matchPaths": ["tests/composer.json"], - "enabled": true, - "groupName": "paratest" - }, + "matchFileNames": [ + "tests/composer.json" + ], + "enabled": true, + "groupName": "paratest" + }, { - "matchPaths": [".github/**"], + "matchFileNames": [ + ".github/**" + ], "enabled": true, "groupName": "github-actions" }