1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 05:13:31 +00:00

Add github actions to renovate (#2536)

* Add github actions to renovate

* Add gh actions manager

* Apply whole renovate config

* Add newline
This commit is contained in:
Michał Chęciński
2023-05-24 16:04:39 +02:00
committed by GitHub
parent 74e9914f5b
commit 79241731e7

57
.github/renovate.json vendored
View File

@@ -1,22 +1,37 @@
{ {
"$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",
":rebaseStalePrs", ":pinAllExceptPeerDependencies",
":disableDependencyDashboard" ":prConcurrentLimit10",
], ":rebaseStalePrs",
"enabledManagers": [ "schedule:weekends",
"nuget" ":separateMajorReleases"
], ],
"packageRules": [ "enabledManagers": ["cargo", "github-actions", "npm", "nuget"],
{ "packageRules": [
"matchManagers": ["nuget"], {
"groupName": "Nuget updates", "groupName": "cargo minor",
"groupSlug": "nuget", "matchManagers": ["cargo"],
"separateMajorMinor": false "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"],
"matchUpdateTypes": ["minor", "patch"]
},
]
}