charts/.github/renovate.json5
2020-12-16 12:16:37 -05:00

90 lines
2.1 KiB
Plaintext

{
"enabled": true,
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard",
"commitMessagePrefix": "[{{{parentDir}}}]",
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
"assigneesFromCodeOwners": true,
"reviewersFromCodeOwners": true,
"suppressNotifications": ["prIgnoreNotification"],
"rebaseWhen": "conflicted",
"prConcurrentLimit": 5,
"helm-values": {
"enabled": false
},
"helmv3": {
"fileMatch": ["charts/.+/Chart\\.yaml$"]
},
"packageRules": [
//
// Common library dep
//
{
"datasources": ["helmv3"],
"updateTypes": ["major"],
"bumpVersion": "major",
"labels": ["dependency/major"],
"packagePatterns": [
"common"
]
},
{
"datasources": ["helmv3"],
"updateTypes": ["minor"],
"bumpVersion": "minor",
"labels": ["dependency/minor"],
"packagePatterns": [
"common"
]
},
{
"datasources": ["helmv3"],
"updateTypes": ["patch"],
"bumpVersion": "patch",
"labels": ["dependency/patch"],
"packagePatterns": [
"common"
]
},
//
// Other library deps
//
{
"datasources": ["helmv3"],
"updateTypes": ["major"],
"bumpVersion": "major",
"labels": ["dependency/major"],
"excludePackagePatterns": [
"common"
],
"schedule": [
"every 3 months on the first day of the month"
]
},
{
"datasources": ["helmv3"],
"updateTypes": ["minor"],
"bumpVersion": "minor",
"labels": ["dependency/minor"],
"excludePackagePatterns": [
"common"
],
"schedule": [
"every 2 months on the first day of the month"
]
},
{
"datasources": ["helmv3"],
"updateTypes": ["patch"],
"bumpVersion": "patch",
"labels": ["dependency/patch"],
"excludePackagePatterns": [
"common"
],
"schedule": [
"every 1 months on the first day of the month"
]
}
]
}