fix(renovate): use allowedVersions to block open-policy-agent/regal v1+

Replace matchNewValue with allowedVersions constraint to properly
prevent Renovate from creating update branches for major versions.
The previous enabled/matchNewValue approach did not prevent branch
creation for already existing PRs.
This commit is contained in:
2026-07-19 13:14:39 +02:00
parent a48df6f232
commit e42a2acc9c
+2 -3
View File
@@ -6,9 +6,8 @@
], ],
"packageRules": [ "packageRules": [
{ {
"enabled": false, "allowedVersions": "<1.0.0",
"matchPackageNames": ["open-policy-agent/regal"], "matchPackageNames": ["open-policy-agent/regal"]
"matchNewValue": "^2"
} }
] ]
} }