mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
38 lines
723 B
JSON
38 lines
723 B
JSON
{
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|