mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
Add renovate package rule to apply dependencies label (#2438)
This commit is contained in:
parent
16bfa4d80b
commit
84cc9b93ae
1 changed files with 7 additions and 6 deletions
13
.github/renovate.json
vendored
13
.github/renovate.json
vendored
|
@ -3,28 +3,29 @@
|
|||
"extends": ["config:recommended", ":maintainLockFilesWeekly"],
|
||||
"prConcurrentLimit": 5,
|
||||
"packageRules": [
|
||||
{
|
||||
"matchManagers": ["gomod", "npm", "dockerfile"],
|
||||
"labels": ["dependencies"]
|
||||
},
|
||||
{
|
||||
"groupName": "golang deps non-major",
|
||||
"matchManagers": ["gomod"],
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"extends": ["schedule:daily"],
|
||||
"labels": ["dependencies"]
|
||||
"extends": ["schedule:daily"]
|
||||
},
|
||||
{
|
||||
"groupName": "web npm deps non-major",
|
||||
"matchManagers": ["npm"],
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"matchFileNames": ["web/package.json"],
|
||||
"extends": ["schedule:daily"],
|
||||
"labels": ["dependencies"]
|
||||
"extends": ["schedule:daily"]
|
||||
},
|
||||
{
|
||||
"groupName": "docs npm deps non-major",
|
||||
"matchManagers": ["npm"],
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"matchFileNames": ["docs/**/package.json"],
|
||||
"extends": ["schedule:daily"],
|
||||
"labels": ["dependencies"]
|
||||
"extends": ["schedule:daily"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue