From e8e303565adbc8a47906533f293ba76c752e2535 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sat, 14 Feb 2026 12:57:41 +0100 Subject: [PATCH] fix: fix internal package name regex and field and remove package groups (#38) Dropping the "matchManagers" as we actually want to match anything, regardless of manager. Also fixing the regex, wasn't valid before. Also renaming the "matchPackagePatterns" to "matchPackageNames" as the previous value isn't supported anymore.. Since it's JSON, renovate needs the regex to be quoted. See example: ```json { "packageRules": [ { "matchDatasources": ["npm"], "matchPackageNames": ["/^angular/"], "groupName": "Angular" } ] } ``` Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/38 Reviewed-by: branch-buddy Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- common.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common.json b/common.json index e603cb3..95af66a 100644 --- a/common.json +++ b/common.json @@ -12,8 +12,7 @@ }, { "description": "Exempt local dependencies from the minimum release age", - "matchManagers": ["docker-compose", "helm-values", "github-actions", "kubernetes", "dockerfile"], - "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"], + "matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"], "minimumReleaseAge": null } ]