mirror of
https://github.com/bitwarden/android.git
synced 2024-11-25 19:06:05 +03:00
Update Renovate config (#1215)
This commit is contained in:
parent
af266723e9
commit
4880dc58bd
1 changed files with 43 additions and 24 deletions
67
.github/renovate.json
vendored
67
.github/renovate.json
vendored
|
@ -1,38 +1,57 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:base",
|
"github>bitwarden/renovate-config"
|
||||||
"github>bitwarden/renovate-config:pin-actions",
|
|
||||||
":combinePatchMinorReleases",
|
|
||||||
":dependencyDashboard",
|
|
||||||
":maintainLockFilesWeekly",
|
|
||||||
":pinAllExceptPeerDependencies",
|
|
||||||
":prConcurrentLimit10",
|
|
||||||
":rebaseStalePrs",
|
|
||||||
"schedule:weekends",
|
|
||||||
":separateMajorReleases"
|
|
||||||
],
|
],
|
||||||
"enabledManagers": ["cargo", "github-actions", "npm", "nuget"],
|
"enabledManagers": [
|
||||||
|
"github-actions",
|
||||||
|
"gradle",
|
||||||
|
"bundler"
|
||||||
|
],
|
||||||
|
"commitMessagePrefix": "[deps]:",
|
||||||
|
"commitMessageTopic": "{{depName}}",
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
|
||||||
"groupName": "cargo minor",
|
|
||||||
"matchManagers": ["cargo"],
|
|
||||||
"matchUpdateTypes": ["minor", "patch"]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"groupName": "gh minor",
|
"groupName": "gh minor",
|
||||||
"matchManagers": ["github-actions"],
|
"matchManagers": [
|
||||||
"matchUpdateTypes": ["minor", "patch"]
|
"github-actions"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"groupName": "npm minor",
|
"groupName": "gradle minor",
|
||||||
"matchManagers": ["npm"],
|
"matchUpdateTypes": [
|
||||||
"matchUpdateTypes": ["minor", "patch"]
|
"minor",
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
|
"matchManagers": [
|
||||||
|
"gradle"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"groupName": "nuget minor",
|
"groupName": "kotlin",
|
||||||
"matchManagers": ["nuget"],
|
"description": "Kotlin and Compose dependencies that must be updated together to maintain compatibility.",
|
||||||
"matchUpdateTypes": ["minor", "patch"]
|
"matchPackagePatterns": [
|
||||||
|
"androidx.compose:compose-bom",
|
||||||
|
"org.jetbrains.kotlin.*",
|
||||||
|
"com.google.devtools.ksp"
|
||||||
|
],
|
||||||
|
"matchManagers": [
|
||||||
|
"gradle"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "bundler minor",
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
|
"matchManagers": [
|
||||||
|
"bundler"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue