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