Allow dependency updates to WIP webv2 branch

This commit is contained in:
Gabe Kangas 2022-08-14 17:48:07 -07:00
parent 70aa31153f
commit c93d4fca08
No known key found for this signature in database
GPG key ID: 9A56337728BC81EA

View file

@ -1,38 +1,42 @@
{
"extends": [
"config:base"
],
"timezone": "America/Los_Angeles",
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"npm": {
"stabilityDays": 3
},
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates",
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"automerge": true,
"major": {
"dependencyDashboardApproval": true
},
"matchCurrentVersion": "!/^0/",
"automergeType": "branch"
},
{
"matchDepTypes": [
"devDependencies"
],
"automerge": true,
"major": {
"dependencyDashboardApproval": true
}
}
]
"extends": [
"config:base"
],
"timezone": "America/Los_Angeles",
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"npm": {
"stabilityDays": 3
},
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates",
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"automerge": true,
"baseBranches": [
"develop",
"webv2"
],
"major": {
"dependencyDashboardApproval": true
},
"matchCurrentVersion": "!/^0/",
"automergeType": "branch"
},
{
"matchDepTypes": [
"devDependencies"
],
"automerge": true,
"major": {
"dependencyDashboardApproval": true
}
}
]
}