mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
93710eeb18
Currently renovatebot only cares about the default branch, which is currently develop. In order to keep everything up-to-date we should configure it, to also make sure that the master branch for 1.x will be updated. Therefore this patch adds the `baseBranches` config option, which allows to define an array of branches to update. Reference: https://docs.renovatebot.com/configuration-options/#basebranches Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
29 lines
485 B
JSON
29 lines
485 B
JSON
{
|
|
"extends": [
|
|
"config:base",
|
|
"group:definitelyTyped",
|
|
"group:socketio",
|
|
"group:linters",
|
|
"group:test",
|
|
":gitSignOff",
|
|
":prHourlyLimitNone",
|
|
":dependencyDashboard",
|
|
":rebaseStalePrs",
|
|
":maintainLockFilesWeekly"
|
|
],
|
|
"baseBranches": [
|
|
"master",
|
|
"develop"
|
|
],
|
|
"labels": [
|
|
"type: maintenance"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"groupName": "NestJS packages",
|
|
"packagePatterns": [
|
|
"^@nestjs/"
|
|
]
|
|
}
|
|
]
|
|
}
|