Files
cloudnative-vectorchord-pgv…/renovate.json
bo0tzz bb2150bb50 renovate: Exclude major postgresql updates (#20)
* renovate: Exclude major postgresql updates
2023-12-09 19:48:20 +01:00

25 lines
559 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"automerge": true,
"rebaseWhen": "conflicted",
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^versions.yaml$"],
"matchStrings": [
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\\n.*?\"(?<currentValue>.*)\"\\n"
]
}
],
"packageRules": [
{
"matchUpdateTypes": ["major"],
"matchPackageNames": ["ghcr.io/cloudnative-pg/postgresql"],
"enabled": false
}
]
}