2020-12-16 15:03:15 +00:00
|
|
|
{
|
|
|
|
"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
|
|
|
|
{
|
2021-08-26 15:04:28 +00:00
|
|
|
"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+))?$"
|
|
|
|
},
|
2022-03-29 07:57:54 +00:00
|
|
|
///
|
|
|
|
/// Automatically update minor/patch Github Actions
|
|
|
|
///
|
|
|
|
{
|
|
|
|
"matchManagers": ["github-actions"],
|
|
|
|
"automerge": true,
|
|
|
|
"automergeType": "branch",
|
|
|
|
"matchUpdateTypes": ["minor", "patch"]
|
|
|
|
},
|
2020-12-16 15:03:15 +00:00
|
|
|
//
|
|
|
|
// Common library dep
|
|
|
|
//
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 20:13:54 +00:00
|
|
|
"commitMessagePrefix": "[{{{parentDir}}}]",
|
|
|
|
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["major"],
|
|
|
|
"bumpVersion": "major",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/major"],
|
2021-03-23 12:17:41 +00:00
|
|
|
"packageNames": ["common"],
|
2022-02-04 09:05:06 +00:00
|
|
|
"groupName": ["common library major"]
|
2020-12-16 15:03:15 +00:00
|
|
|
},
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["minor"],
|
|
|
|
"bumpVersion": "minor",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/minor"],
|
2020-12-16 19:34:01 +00:00
|
|
|
"packageNames": ["common"],
|
2022-02-04 09:05:06 +00:00
|
|
|
"groupName": ["common library minor"]
|
2020-12-16 15:03:15 +00:00
|
|
|
},
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["patch"],
|
|
|
|
"bumpVersion": "patch",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/patch"],
|
2020-12-16 19:34:01 +00:00
|
|
|
"packageNames": ["common"],
|
2022-02-04 09:05:06 +00:00
|
|
|
"groupName": ["common library patch"]
|
2020-12-16 15:03:15 +00:00
|
|
|
},
|
|
|
|
//
|
2022-03-29 07:57:54 +00:00
|
|
|
// Other external chart deps
|
2020-12-16 15:03:15 +00:00
|
|
|
//
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 20:13:54 +00:00
|
|
|
"commitMessagePrefix": "[{{{parentDir}}}]",
|
|
|
|
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["major"],
|
|
|
|
"bumpVersion": "major",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/major"],
|
2020-12-16 17:59:59 +00:00
|
|
|
"excludePackageNames": ["common"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"schedule": [
|
|
|
|
"every 3 months on the first day of the month"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["minor"],
|
|
|
|
"bumpVersion": "minor",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/minor"],
|
2020-12-16 17:59:59 +00:00
|
|
|
"excludePackageNames": ["common"],
|
2022-02-04 09:05:06 +00:00
|
|
|
"groupName": ["external dependency minor"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"schedule": [
|
|
|
|
"every 2 months on the first day of the month"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2022-03-29 07:57:54 +00:00
|
|
|
"matchDatasources": ["helm"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"updateTypes": ["patch"],
|
|
|
|
"bumpVersion": "patch",
|
2022-02-04 09:05:06 +00:00
|
|
|
"labels": ["type/patch"],
|
2020-12-16 17:59:59 +00:00
|
|
|
"excludePackageNames": ["common"],
|
2022-02-04 09:05:06 +00:00
|
|
|
"groupName": ["external dependency patch"],
|
2020-12-16 15:03:15 +00:00
|
|
|
"schedule": [
|
|
|
|
"every 1 months on the first day of the month"
|
|
|
|
]
|
2021-01-05 18:20:22 +00:00
|
|
|
}
|
2020-12-16 15:03:15 +00:00
|
|
|
]
|
|
|
|
}
|