mirror of
https://github.com/lordmathis/dev-cluster.git
synced 2025-12-22 16:44:24 +00:00
23 lines
637 B
JSON
23 lines
637 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"flux": {
|
|
"fileMatch": ["\\.yaml$"]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchPackageNames": ["docker.io/bitnami/postgresql"],
|
|
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(-debian-\\d+-r(?<build>\\d+))?$",
|
|
"allowedVersions": "/^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(-debian-\\d+-r(?<build>\\d+))?$/",
|
|
"packagePatterns": ["postgresql"],
|
|
"ignoreUnstable": true,
|
|
"separateMinorPatch": true,
|
|
"patch": {
|
|
"enabled": false
|
|
}
|
|
}
|
|
]
|
|
}
|