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",
"extends": ["config:base"],
"extends": [
"config:recommended"
],
"prConcurrentLimit": 3,
"prHourlyLimit": 1,
"recreateWhen": "auto",
@ -8,20 +10,39 @@
"packageRules": [
{
"groupName": "Swift non-major dependencies",
"matchManagers": ["swift"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["swift"]
"matchManagers": [
"swift"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"labels": [
"swift"
]
},
{
"groupName": "CI non-major dependencies",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"labels": ["ci"]
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"labels": [
"ci"
]
},
{
"groupName": "Other non-major dependencies",
"matchUpdateTypes": ["minor", "patch"]
"matchUpdateTypes": [
"minor",
"patch"
]
}
],
"labels": ["dependencies"]
"labels": [
"dependencies"
]
}