mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
c45bbee4a3
* Add renovate config * Update renovate.json * Remove unnecassary config * Update renovate.json * Match only minor and patch updates * Disable major updates
26 lines
488 B
JSON
26 lines
488 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base",
|
|
"schedule:monthly",
|
|
":maintainLockFilesMonthly",
|
|
":preserveSemverRanges",
|
|
":rebaseStalePrs",
|
|
":disableMajorUpdates"
|
|
],
|
|
"enabledManagers": [
|
|
"nuget"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["nuget"],
|
|
"groupName": "Nuget updates",
|
|
"groupSlug": "nuget",
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
]
|
|
}
|
|
]
|
|
}
|