Files
infrastructure/.github/renovate.json
2024-11-13 04:10:32 +00:00

145 lines
3.9 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"mergeConfidence:all-badges",
":rebaseStalePrs"
],
"timezone": "US/Central",
"schedule": [
"every weekday"
],
"labels": [],
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"packageRules": [
{
"description": "Disables for non major Renovate version",
"matchFileNames": [
".github/renovate-update-notification/Dockerfile"
],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest",
"rollback"
],
"enabled": false
},
{
"description": "Generate for major Renovate version",
"matchFileNames": [
".github/renovate-update-notification/Dockerfile"
],
"matchUpdateTypes": [
"major"
],
"addLabels": [
"upgrade"
],
"automerge": false
},
{
"description": "Label charts",
"matchDatasources": [
"helm"
],
"addLabels": [
"chart"
],
"automerge": false,
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge chart patches",
"matchUpdateTypes": [
"patch"
],
"matchDatasources": [
"helm"
],
"addLabels": [
"chart"
],
"automerge": true,
"automergeType": "branch",
"minimumReleaseAge": "3 days"
},
{
"description": "Label images",
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"automerge": false,
"minimumReleaseAge": "3 days"
},
{
"description": "Label images, linuxserver versioning, qbittorrent",
"matchDepNames": [
"ghcr.io/linuxserver/qbittorrent"
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)-r(?<build>\\w+)-ls(?<release>\\d+)",
"automerge": false,
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge onedr0p plex images",
"matchDepNames": [
"ghcr.io/onedr0p/plex"
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)-(?<revision>.+)?$",
"automerge": true,
"automergeType": "branch"
},
{
"description": "Automerge image patches",
"matchUpdateTypes": [
"patch"
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"automerge": true,
"automergeType": "branch",
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge minor image changes",
"matchDepNames": [
"amazon/aws-cli"
],
"matchUpdateTypes": [
"minor"
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"automerge": true,
"automergeType": "branch",
"minimumReleaseAge": "3 days"
}
]
}