mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 15:18:43 +00:00
51 lines
1.4 KiB
JSON
51 lines
1.4 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 (lang)",
|
|
"matchPackagePatterns": ["^golang$", "xgo"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"extends": ["schedule:daily"]
|
|
},
|
|
{
|
|
"groupName": "golang (packages)",
|
|
"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+))$"
|
|
}
|
|
]
|
|
}
|