mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
45 lines
1.3 KiB
JSON
45 lines
1.3 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"]
|
|
},
|
|
{
|
|
"matchDatasources": ["docker"],
|
|
"matchPackagePatterns": ["xgo"],
|
|
"versioning": "regex:^go-(?<major>\\d+)?(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))$"
|
|
}
|
|
]
|
|
}
|