Add package rules, limit reloader to 1 time a month.
This commit is contained in:
parent
97e87d3b6b
commit
7b45133f49
2 changed files with 19 additions and 1 deletions
17
.renovate/packageRules.json5
Normal file
17
.renovate/packageRules.json5
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"description": ["Custom schedule for frequently updated packages"],
|
||||||
|
"matchDataSources": ["docker", "helm"],
|
||||||
|
"matchPackagePatterns": ["reloader"],
|
||||||
|
"schedule": ["on the first day of the month"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": ["Custom versioning for minio"],
|
||||||
|
"matchDatasources": ["docker"],
|
||||||
|
"matchPackagePatterns": ["minio"],
|
||||||
|
"versioning": "regex:^RELEASE\\.(?<major>\\d+)-(?<minor>\\d+)-(?<patch>\\d+)T.*Z$"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -3,7 +3,8 @@
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:recommended",
|
"config:recommended",
|
||||||
"local>jahanson/homelab//.renovate/customManagers.json5",
|
"local>jahanson/homelab//.renovate/customManagers.json5",
|
||||||
"local>jahanson/homelab//.renovate/autoMerge.json5"
|
"local>jahanson/homelab//.renovate/autoMerge.json5",
|
||||||
|
"local>jahanson/homelab//.renovate/packageRules.json5"
|
||||||
],
|
],
|
||||||
"ignorePaths": [
|
"ignorePaths": [
|
||||||
".archive/**"
|
".archive/**"
|
||||||
|
|
Loading…
Reference in a new issue