diff --git a/renovate.json b/renovate.json index a797a9a75..c3809bcf7 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 }