Files
homelab/renovate.json
Sebastian Klamar 1d3f025625 feat(renovate): rebase stale PRs
use renovate's :rebaseStalePrs option for rebasing existing PRs any time the base branch has been updated
2024-11-17 17:03:36 +01:00

68 lines
1.3 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":rebaseStalePrs"
],
"kustomize": {
"fileMatch": [
"(^|/)kustomization\\.ya?ml(\\.j2)?$"
]
},
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"\\.tf$",
"\\.tftpl$",
"\\.yaml$",
"\\.sh$"
],
"matchStrings": [
"(?<currentValue>[\\w+\\.\\-]*)['\",;]*\\s*#\\s?renovate: (?<datasource>\\S+)=(?<depName>\\S+)\\s?(registry=(?<registryUrl>\\S+))?\\s?(versioning=(?<versioning>\\S+))?"
]
}
],
"packageRules": [
{
"groupName": "Media containers",
"matchPackageNames": [
"ghcr.io/onedr0p/**",
"ghcr.io/jellyfin/**"
]
},
{
"groupName": "Netbird",
"matchPackageNames": [
"docker.io/netbirdio/**"
]
},
{
"groupName": "Intel Device Plugins",
"matchPackageNames": [
"/intel-device-plugins/"
]
},
{
"groupName": "Cilium",
"matchPackageNames": [
"/cilium/"
]
},
{
"matchManagers": [
"terraform"
],
"matchDepTypes": [
"provider",
"required_provider"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
}