mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
Add renovate deps groups (#2417)
Co-authored-by: Patrick Schratz <patrick.schratz@gmail.com>
This commit is contained in:
parent
5bb8ff546d
commit
6a61bb0a01
2 changed files with 30 additions and 6 deletions
30
.github/renovate.json
vendored
Normal file
30
.github/renovate.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"$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"]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue