1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

Add github actions to renovate (#2959)

* Add github actions to renovate

* Add gh actions manager

* Fix

* Add newline
This commit is contained in:
Michał Chęciński 2023-05-24 16:09:59 +02:00 committed by GitHub
parent eb4e3a4cf9
commit 78f0d99da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

40
.github/renovate.json vendored
View File

@ -2,24 +2,36 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"config:base", "config:base",
"schedule:monthly", ":combinePatchMinorReleases",
":maintainLockFilesMonthly", ":dependencyDashboard",
":preserveSemverRanges", ":maintainLockFilesWeekly",
":pinAllExceptPeerDependencies",
":prConcurrentLimit10",
":rebaseStalePrs", ":rebaseStalePrs",
":disableMajorUpdates" "schedule:weekends",
], ":separateMajorReleases"
"enabledManagers": [
"nuget"
], ],
"enabledManagers": ["cargo", "github-actions", "npm", "nuget"],
"packageRules": [ "packageRules": [
{ {
"groupName": "cargo minor",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "gh minor",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "npm minor",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "nuget minor",
"matchManagers": ["nuget"], "matchManagers": ["nuget"],
"groupName": "Nuget updates", "matchUpdateTypes": ["minor", "patch"]
"groupSlug": "nuget", },
"matchUpdateTypes": [
"minor",
"patch"
]
}
] ]
} }