chore(renovate): schedule some deps quarterly

This commit is contained in:
Michael Kriese 2024-04-17 09:22:42 +02:00
parent e4aa7bd511
commit bb0daa9522
No known key found for this signature in database
GPG Key ID: F8D7748549A5986A
1 changed files with 21 additions and 3 deletions

View File

@ -20,7 +20,13 @@
"packageRules": [ "packageRules": [
{ {
"description": "Require approval for go and python minor version", "description": "Require approval for go and python minor version",
"matchDepNames": ["go", "python", "golang", "docker.io/golang", "docker.io/library/golang"], "matchDepNames": [
"go",
"python",
"golang",
"docker.io/golang",
"docker.io/library/golang"
],
"matchUpdateTypes": ["minor"], "matchUpdateTypes": ["minor"],
"dependencyDashboardApproval": true "dependencyDashboardApproval": true
}, },
@ -29,9 +35,19 @@
"matchDepNames": ["github.com/go-ap/activitypub", "bitnami/minio"], "matchDepNames": ["github.com/go-ap/activitypub", "bitnami/minio"],
"dependencyDashboardApproval": true "dependencyDashboardApproval": true
}, },
{
"description": "Schedule some deps less frequently",
"matchDepNames": ["github.com/google/pprof"],
"extends": ["schedule:quarterly"]
},
{ {
"description": "Group golang packages", "description": "Group golang packages",
"matchDepNames": ["go", "golang", "docker.io/golang", "docker.io/library/golang"], "matchDepNames": [
"go",
"golang",
"docker.io/golang",
"docker.io/library/golang"
],
"groupName": "golang packages" "groupName": "golang packages"
}, },
{ {
@ -81,7 +97,9 @@
"description": "Update deps inside Makefile", "description": "Update deps inside Makefile",
"customType": "regex", "customType": "regex",
"fileMatch": ["^Makefile$"], "fileMatch": ["^Makefile$"],
"matchStrings": [" \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)\\s"] "matchStrings": [
" \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)\\s"
]
} }
] ]
} }