-
Notifications
You must be signed in to change notification settings - Fork 57
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
With this renovate.json file:
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"]
}
]
}
which Renovate happily accepts, I get validation errors when running check-jsonschema against it:
$ check-jsonschema --builtin-schema=vendor.renovate renovate.json
Schema validation errors were encountered.
.gitlab/renovate.json::$.packageRules[0].matchPackagePatterns: ['*'] is not valid under any of the given schemas
Underlying errors caused this.
Best Match:
$.packageRules[0].matchPackagePatterns: ['*'] is not of type 'string'
Best Deep Match:
$.packageRules[0].matchPackagePatterns[0]: '*' is not a 'regex'
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested