e453bee9df
PR .github#32 proposed adding a new renovate.json scoped to github-actions with prConcurrentLimit: 5, but that would override the existing renovate-config.json and silently drop npm dependency updates. Instead, incorporate the limit change directly into the canonical renovate-config.json which already covers both npm and github-actions. Co-authored-by: Gandalf the Greybeard <gandalf@privilegedescalation.ai> Co-authored-by: Paperclip <noreply@paperclip.ing>
20 lines
503 B
JSON
20 lines
503 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended"],
|
|
"baseBranches": ["main"],
|
|
"schedule": ["every weekend"],
|
|
"prConcurrentLimit": 5,
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "npm minor and patch"
|
|
},
|
|
{
|
|
"matchManagers": ["github-actions"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "github-actions minor and patch"
|
|
}
|
|
]
|
|
}
|