charts/.github/renovate.json5

105 lines
3.0 KiB
Plaintext
Raw Permalink Normal View History

{
"enabled": true,
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard",
"assigneesFromCodeOwners": true,
"reviewersFromCodeOwners": true,
"suppressNotifications": ["prIgnoreNotification"],
"prConcurrentLimit": 5,
"helm-values": {
"enabled": false
},
"helmv3": {
"fileMatch": ["charts/.+/Chart\\.yaml$"]
},
"packageRules": [
2020-12-17 13:11:14 +00:00
// Setup datasources
{
"matchDatasources": ["helm"],
2020-12-17 13:11:14 +00:00
"commitMessageTopic": "Helm chart {{depName}}",
"separateMinorPatch": true
},
2021-11-01 10:32:54 +00:00
// Custom version schemes
{
"matchDatasources": ["github-tags"],
"matchPackageNames": ["potiuk/get-workflow-origin"],
"versioning": "regex:^v(?<major>\\d+)_(?<minor>\\d+)(_(?<patch>\\d+))?$"
},
///
/// Automatically update minor/patch Github Actions
///
{
"matchManagers": ["github-actions"],
"automerge": true,
"automergeType": "branch",
"matchUpdateTypes": ["minor", "patch"]
},
//
// Common library dep
//
{
"matchDatasources": ["helm"],
"commitMessagePrefix": "[{{{parentDir}}}]",
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
"updateTypes": ["major"],
"bumpVersion": "major",
"labels": ["type/major"],
2021-03-23 12:17:41 +00:00
"packageNames": ["common"],
"groupName": ["common library major"]
},
{
"matchDatasources": ["helm"],
"updateTypes": ["minor"],
"bumpVersion": "minor",
"labels": ["type/minor"],
2020-12-16 19:34:01 +00:00
"packageNames": ["common"],
"groupName": ["common library minor"]
},
{
"matchDatasources": ["helm"],
"updateTypes": ["patch"],
"bumpVersion": "patch",
"labels": ["type/patch"],
2020-12-16 19:34:01 +00:00
"packageNames": ["common"],
"groupName": ["common library patch"]
},
//
// Other external chart deps
//
{
"matchDatasources": ["helm"],
"commitMessagePrefix": "[{{{parentDir}}}]",
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
"updateTypes": ["major"],
"bumpVersion": "major",
"labels": ["type/major"],
2020-12-16 17:59:59 +00:00
"excludePackageNames": ["common"],
"schedule": [
"every 3 months on the first day of the month"
]
},
{
"matchDatasources": ["helm"],
"updateTypes": ["minor"],
"bumpVersion": "minor",
"labels": ["type/minor"],
2020-12-16 17:59:59 +00:00
"excludePackageNames": ["common"],
"groupName": ["external dependency minor"],
"schedule": [
"every 2 months on the first day of the month"
]
},
{
"matchDatasources": ["helm"],
"updateTypes": ["patch"],
"bumpVersion": "patch",
"labels": ["type/patch"],
2020-12-16 17:59:59 +00:00
"excludePackageNames": ["common"],
"groupName": ["external dependency patch"],
"schedule": [
"every 1 months on the first day of the month"
]
2021-01-05 18:20:22 +00:00
}
]
}