mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
6d3bf5c29c
Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <6213398+bjw-s@users.noreply.github.com>
90 lines
2.1 KiB
Plaintext
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"],
|
|
"packageNames": [
|
|
"common"
|
|
]
|
|
},
|
|
{
|
|
"datasources": ["helmv3"],
|
|
"updateTypes": ["minor"],
|
|
"bumpVersion": "minor",
|
|
"labels": ["dependency/minor"],
|
|
"packageNames": [
|
|
"common"
|
|
]
|
|
},
|
|
{
|
|
"datasources": ["helmv3"],
|
|
"updateTypes": ["patch"],
|
|
"bumpVersion": "patch",
|
|
"labels": ["dependency/patch"],
|
|
"packageNames": [
|
|
"common"
|
|
]
|
|
},
|
|
//
|
|
// Other library deps
|
|
//
|
|
{
|
|
"datasources": ["helmv3"],
|
|
"updateTypes": ["major"],
|
|
"bumpVersion": "major",
|
|
"labels": ["dependency/major"],
|
|
"excludePackageNames": [
|
|
"common"
|
|
],
|
|
"schedule": [
|
|
"every 3 months on the first day of the month"
|
|
]
|
|
},
|
|
{
|
|
"datasources": ["helmv3"],
|
|
"updateTypes": ["minor"],
|
|
"bumpVersion": "minor",
|
|
"labels": ["dependency/minor"],
|
|
"excludePackageNames": [
|
|
"common"
|
|
],
|
|
"schedule": [
|
|
"every 2 months on the first day of the month"
|
|
]
|
|
},
|
|
{
|
|
"datasources": ["helmv3"],
|
|
"updateTypes": ["patch"],
|
|
"bumpVersion": "patch",
|
|
"labels": ["dependency/patch"],
|
|
"excludePackageNames": [
|
|
"common"
|
|
],
|
|
"schedule": [
|
|
"every 1 months on the first day of the month"
|
|
]
|
|
}
|
|
]
|
|
}
|