Files
infrastructure/.github/renovate.json
2024-06-06 21:45:41 -05:00

111 lines
2.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": [],
"packageRules": [
{
"description": "Disables for non major Renovate version",
"matchPaths": [
".github/renovate-update-notification/Dockerfile"
],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest",
"rollback"
],
"enabled": false
},
{
"description": "Generate for major Renovate version",
"matchPaths": [
".github/renovate-update-notification/Dockerfile"
],
"matchUpdateTypes": [
"major"
],
"addLabels": [
"upgrade"
],
"automerge": false
},
{
"description": "Label charts",
"matchDatasources": [
"helm"
],
"addLabels": [
"chart"
],
"automerge": false,
"minimumReleaseAge": "3 days"
},
{
"description": "Label images",
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"automerge": false,
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge charts",
"matchDepNames": [
"reloader"
],
"matchDatasources": [
"helm"
],
"addLabels": [
"chart"
],
"automerge": true,
"automergeType": "branch",
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge 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",
"minimumReleaseAge": "3 days"
},
{
"description": "Automerge images",
"matchDepNames": [
"ghcr.io/advplyr/audiobookshelf"
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image"
],
"automerge": true,
"automergeType": "branch",
"minimumReleaseAge": "3 days"
}
]
}