Files
infrastructure/renovate.json
Alex Lebens a3b5e95997
All checks were successful
renovate / renovate (push) Successful in 1m21s
add custom manager
2026-01-07 17:14:08 -06:00

85 lines
2.3 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"mergeConfidence:all-badges",
":rebaseStalePrs"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)Chart\\.yaml$"],
"matchStrings": [
"# renovate: github=(?<packageName>[^\\s]+)\\s+version: (?<currentValue>[^\\s]+)"
],
"datasourceTemplate": "github-releases"
}
],
"timezone": "US/Central",
"labels": [],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"packageRules": [
{
"description": "Label charts",
"matchDatasources": ["helm"],
"addLabels": ["chart"],
"automerge": false
},
{
"description": "Automerge chart patches",
"matchUpdateTypes": ["patch"],
"matchDatasources": ["helm"],
"addLabels": ["chart", "automerge"],
"automerge": true,
"minimumReleaseAge": "1 days"
},
{
"description": "Automerge helm chart lock files",
"matchManagers": ["helm"],
"lockFileMaintenance": {
"enabled": true
},
"addLabels": ["chart", "automerge"],
"automerge": true,
"automergeType": "branch"
},
{
"description": "Label images",
"matchDatasources": ["docker"],
"addLabels": ["image"],
"automerge": false
},
{
"description": "Automerge image patches",
"matchUpdateTypes": ["patch", "digest"],
"matchDatasources": ["docker"],
"addLabels": ["image", "automerge"],
"automerge": true,
"minimumReleaseAge": "1 days"
},
{
"description": "Automerge image updates for certain applications",
"matchUpdateTypes": ["minor"],
"matchDatasources": ["docker"],
"matchPackageNames": [
"ghcr.io/advplyr/audiobookshelf",
"ghcr.io/gethomepage/homepage",
"ghcr.io/gitroomhq/postiz-app",
"ghcr.io/linuxserver/bazarr",
"ghcr.io/linuxserver/code-server",
"ghcr.io/linuxserver/lidarr",
"ghcr.io/linuxserver/plex",
"ghcr.io/linuxserver/prowlarr",
"ghcr.io/linuxserver/radarr",
"ghcr.io/linuxserver/sonarr",
"ghcr.io/prometheus-community/charts/kube-prometheus-stack",
"vectorim/element-web"
],
"addLabels": ["image", "automerge"],
"automerge": true,
"minimumReleaseAge": "2 days"
}
]
}