mirror of
https://github.com/nikdoof/helm-charts.git
synced 2025-12-13 21:42:18 +00:00
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
{
|
|
"enabled": true,
|
|
"dependencyDashboard": true,
|
|
"dependencyDashboardTitle": "Renovate Dashboard",
|
|
"suppressNotifications": ["prIgnoreNotification"],
|
|
"rebaseWhen": "conflicted",
|
|
"prConcurrentLimit": 5,
|
|
"helm-values": {
|
|
"enabled": false
|
|
},
|
|
"helmv3": {
|
|
"fileMatch": ["charts/.+/Chart\\.yaml$"]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"datasources": ["helm"],
|
|
"commitMessageTopic": "Helm chart {{depName}}",
|
|
"separateMinorPatch": true
|
|
},
|
|
{
|
|
"datasources": ["docker"],
|
|
"commitMessageTopic": "Docker image {{depName}}",
|
|
"separateMinorPatch": true
|
|
},
|
|
{
|
|
"commitMessagePrefix": "[{{{parentDir}}}]",
|
|
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
|
|
"updateTypes": ["major"],
|
|
"bumpVersion": "major",
|
|
"labels": ["dependency/major"],
|
|
"excludePackageNames": ["common"],
|
|
},
|
|
{
|
|
"updateTypes": ["minor"],
|
|
"bumpVersion": "minor",
|
|
"labels": ["dependency/minor"],
|
|
"excludePackageNames": ["common"],
|
|
"groupName": ["external minor dep"],
|
|
},
|
|
{
|
|
"updateTypes": ["patch"],
|
|
"bumpVersion": "patch",
|
|
"labels": ["dependency/patch"],
|
|
"excludePackageNames": ["common"],
|
|
"groupName": ["external patch dep"],
|
|
}
|
|
]
|
|
}
|