upda/renovate.json5
2024-04-28 22:27:34 +02:00

47 lines
942 B
Text

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":rebaseStalePrs",
":ignoreUnstable",
"group:monorepos",
"group:recommended"
],
"prConcurrentLimit": 0,
"schedule": [
"monthly"
],
// skip next alpine, see https://github.com/mattn/go-sqlite3/issues/1164
"packageRules": [
{
"matchPackageNames": [
"alpine"
],
"matchUpdateTypes": [
"minor",
"major"
],
"enabled": false
},
{
"matchPackagePrefixes": [
"github.com/go-co-op/gocron"
],
"groupName": "gocron"
},
{
"matchUpdateTypes": [
"minor"
],
"groupName": "all minor dependencies",
"groupSlug": "all-minor-deps"
},
{
"matchUpdateTypes": [
"patch"
],
"groupName": "all patch dependencies",
"groupSlug": "all-patch-deps"
}
]
}