1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-22 21:51:22 +01: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",
"extends": [
"config:base",
"schedule:monthly",
":maintainLockFilesMonthly",
":preserveSemverRanges",
":combinePatchMinorReleases",
":dependencyDashboard",
":maintainLockFilesWeekly",
":pinAllExceptPeerDependencies",
":prConcurrentLimit10",
":rebaseStalePrs",
":disableMajorUpdates"
],
"enabledManagers": [
"nuget"
"schedule:weekends",
":separateMajorReleases"
],
"enabledManagers": ["cargo", "github-actions", "npm", "nuget"],
"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"],
"groupName": "Nuget updates",
"groupSlug": "nuget",
"matchUpdateTypes": [
"minor",
"patch"
]
}
"matchUpdateTypes": ["minor", "patch"]
},
]
}