mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
31 lines
900 B
JSON
31 lines
900 B
JSON
|
{
|
||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||
|
"extends": ["config:recommended", ":maintainLockFilesWeekly"],
|
||
|
"prConcurrentLimit": 5,
|
||
|
"packageRules": [
|
||
|
{
|
||
|
"groupName": "golang deps non-major",
|
||
|
"matchManagers": ["gomod"],
|
||
|
"matchUpdateTypes": ["minor", "patch"],
|
||
|
"extends": ["schedule:daily"],
|
||
|
"labels": ["dependencies"]
|
||
|
},
|
||
|
{
|
||
|
"groupName": "web npm deps non-major",
|
||
|
"matchManagers": ["npm"],
|
||
|
"matchUpdateTypes": ["minor", "patch"],
|
||
|
"matchFileNames": ["web/package.json"],
|
||
|
"extends": ["schedule:daily"],
|
||
|
"labels": ["dependencies"]
|
||
|
},
|
||
|
{
|
||
|
"groupName": "docs npm deps non-major",
|
||
|
"matchManagers": ["npm"],
|
||
|
"matchUpdateTypes": ["minor", "patch"],
|
||
|
"matchFileNames": ["docs/**/package.json"],
|
||
|
"extends": ["schedule:daily"],
|
||
|
"labels": ["dependencies"]
|
||
|
}
|
||
|
]
|
||
|
}
|