TrueChartsClone/.github/renovate.json5

111 lines
3.1 KiB
Plaintext
Raw Normal View History

2021-02-04 14:44:51 -05:00
{
"enabled": true,
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dashboard",
"assigneesFromCodeOwners": true,
"reviewersFromCodeOwners": true,
"suppressNotifications": ["prIgnoreNotification"],
"rebaseWhen": "conflicted",
"prConcurrentLimit": 7,
2021-02-04 14:44:51 -05:00
"helm-values": {
2021-05-23 15:20:42 -04:00
"fileMatch": ["charts/.+/.*values\\.yaml$", "charts/.+/SCALE/.*_values\\.yaml$"]
2021-02-04 14:44:51 -05:00
},
"helmv3": {
2021-05-23 15:20:42 -04:00
"fileMatch": ["charts/.+/Chart\\.yaml$"]
2021-02-04 14:44:51 -05:00
},
"packageRules": [
// Setup datasources for dep updates
2021-02-04 14:44:51 -05:00
{
"datasources": ["helm"],
2021-05-23 18:08:22 -04:00
"matchManagers": ["helmv3"],
2021-02-04 14:44:51 -05:00
"commitMessageTopic": "Helm chart {{depName}}",
2021-05-23 15:20:42 -04:00
"separateMinorPatch": true
2021-02-04 14:44:51 -05:00
},
2021-05-23 18:08:22 -04:00
// global docker datasource settings
{
"datasources": ["docker"],
"matchManagers": ["helm-values"],
"enabled": true,
"commitMessageTopic": "container image {{depName}}",
"commitMessageExtra": "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
"matchUpdateTypes": ["major", "minor", "patch"],
},
2021-02-04 14:44:51 -05:00
//
2021-08-31 08:43:47 -04:00
// helm deps
2021-02-04 14:44:51 -05:00
//
{
2021-05-23 18:08:22 -04:00
"matchDatasources": ["helm"],
2021-02-04 14:44:51 -05:00
"commitMessagePrefix": "[{{{parentDir}}}]",
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
"updateTypes": ["major"],
"bumpVersion": "major",
"labels": ["dependency/major"],
"schedule": [
2021-05-24 07:26:49 -04:00
"on tuesday"
2021-02-04 14:44:51 -05:00
]
},
{
2021-05-23 18:08:22 -04:00
"matchDatasources": ["helm"],
2021-08-31 08:43:47 -04:00
"automerge": true,
"updateTypes": ["patch","minor"],
2021-02-04 14:44:51 -05:00
"bumpVersion": "patch",
"labels": ["dependency/patch-minor"],
"groupName": ["patch/minor dep"],
2021-05-24 07:26:49 -04:00
"schedule": [
"on tuesday"
]
}
//
// Tag updates for semantic tags
//
{
2021-05-23 18:08:22 -04:00
"matchDatasources": ["docker"],
"commitMessagePrefix": "[{{{parentDir}}}]",
"branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}",
"updateTypes": ["major"],
"bumpVersion": "major",
2021-05-24 07:26:49 -04:00
"labels": ["tag/major"],
"schedule": [
"on tuesday"
]
},
{
2021-05-23 18:08:22 -04:00
"matchDatasources": ["docker"],
"updateTypes": ["minor"],
"bumpVersion": "minor",
"labels": ["tag/minor"],
2021-05-24 07:26:49 -04:00
"groupName": ["minor"],
"schedule": [
"on tuesday"
]
},
{
2021-05-23 18:08:22 -04:00
"matchDatasources": ["docker"],
"updateTypes": ["patch"],
"bumpVersion": "patch",
"labels": ["tag/patch"],
2021-05-24 07:26:49 -04:00
"groupName": ["patch"],
"schedule": [
"on tuesday"
]
},
//
2021-05-23 18:31:16 -04:00
// Version strategies
//
2021-05-23 18:31:16 -04:00
// Versioning for linuxserver two-three digit container versions
{
"packagePatterns": ["^linuxserver\\/"],
"versionScheme": "regex:^(?<compatibility>.*?(\\d+\\.)??)(?<major>\\d+)\\.(?<minor>\\d+)\\.?(?<patch>\\d+)?(-r?p?\\d)?$"
},
2021-05-23 18:31:16 -04:00
// Versioning for slightly problematic container versions
{
"matchDatasources": ["docker"],
"versioning": "loose",
"matchPackageNames": [
2021-06-30 03:42:39 -04:00
"ghcr.io/k8s-at-home/plex",
"ghcr.io/k8s-at-home/qbittorrent",
],
},
2021-02-04 14:44:51 -05:00
]
}