mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 08:56:29 +00:00
ea95d6381a
As discussed in https://github.com/woodpecker-ci/woodpecker/pull/2463#issuecomment-1722164170 --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended", ":maintainLockFilesWeekly"],
|
|
"prConcurrentLimit": 5,
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["docker-compose"],
|
|
"matchFileNames": ["docker-compose.gitpod.yml"],
|
|
"labels": ["devx"]
|
|
},
|
|
{
|
|
"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"]
|
|
}
|
|
]
|
|
}
|