From b015572c3d42e0846598b86e3dcc1e8883779d28 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 29 Oct 2024 04:17:33 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/renovate.json b/renovate.json index a797a9a75d..c3809bcf7e 100644 --- a/renovate.json +++ b/renovate.json @@ -1,20 +1,30 @@ { "extends": [ - "config:base", + "config:recommended", ":preserveSemverRanges" ], - "packageRules": [{ - "paths": ["testing/composer.json"], - "excludePackageNames": ["phpunit/phpunit"] - }, { - "matchPaths": ["functions/**"], + "packageRules": [ + { + "matchFileNames": [ + "testing/composer.json" + ], + "matchPackageNames": [ + "!phpunit/phpunit" + ] + }, + { + "matchFileNames": [ + "functions/**" + ], "branchPrefix": "renovate/functions-" - }], + } + ], "ignorePaths": [ - "appengine/flexible/", - "run/laravel/" + "appengine/flexible/", + "run/laravel/" ], - "branchPrefix": "renovate/{{parentDir}}-", + "branchPrefix": "renovate/", + "additionalBranchPrefix": "{{parentDir}}-", "prConcurrentLimit": 10, "dependencyDashboard": true }