mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
36 lines
797 B
JSON
36 lines
797 B
JSON
{
|
|
"extends": ["config:base"],
|
|
"timezone": "America/Los_Angeles",
|
|
"schedule": ["before 8am on Monday"],
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"automerge": true
|
|
},
|
|
"npm": {
|
|
"stabilityDays": 3
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"matchUpdateTypes": ["minor"],
|
|
"matchCurrentVersion": "!/^0/",
|
|
"automerge": true
|
|
},
|
|
{
|
|
"matchDepTypes": ["devDependencies"],
|
|
"automerge": true,
|
|
"major": {
|
|
"dependencyDashboardApproval": true
|
|
}
|
|
},
|
|
{
|
|
"matchPackagePatterns": ["*"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"major": {
|
|
"dependencyDashboardApproval": true
|
|
},
|
|
"groupName": "all non-major dependencies",
|
|
"groupSlug": "all-minor-patch",
|
|
"labels": ["dependencies"]
|
|
}
|
|
]
|
|
}
|