Migrate config renovate.json (#93)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2025-03-07 18:23:38 +01:00 committed by GitHub
parent e70179b362
commit 713d0fa3b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 30 additions and 9 deletions

View File

@ -1,6 +1,8 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"], "extends": [
"config:recommended"
],
"prConcurrentLimit": 3, "prConcurrentLimit": 3,
"prHourlyLimit": 1, "prHourlyLimit": 1,
"recreateWhen": "auto", "recreateWhen": "auto",
@ -8,20 +10,39 @@
"packageRules": [ "packageRules": [
{ {
"groupName": "Swift non-major dependencies", "groupName": "Swift non-major dependencies",
"matchManagers": ["swift"], "matchManagers": [
"matchUpdateTypes": ["minor", "patch"], "swift"
"labels": ["swift"] ],
"matchUpdateTypes": [
"minor",
"patch"
],
"labels": [
"swift"
]
}, },
{ {
"groupName": "CI non-major dependencies", "groupName": "CI non-major dependencies",
"matchManagers": ["github-actions"], "matchManagers": [
"matchUpdateTypes": ["minor", "patch"], "github-actions"
"labels": ["ci"] ],
"matchUpdateTypes": [
"minor",
"patch"
],
"labels": [
"ci"
]
}, },
{ {
"groupName": "Other non-major dependencies", "groupName": "Other non-major dependencies",
"matchUpdateTypes": ["minor", "patch"] "matchUpdateTypes": [
"minor",
"patch"
]
} }
], ],
"labels": ["dependencies"] "labels": [
"dependencies"
]
} }