mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 16:27:06 +05:30
82 lines
2 KiB
Text
82 lines
2 KiB
Text
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base",
|
|
":dependencyDashboard",
|
|
"helpers:pinGitHubActionDigests",
|
|
"github>msfjarvis/shared-workflows//renovate/automerge"
|
|
],
|
|
"branchConcurrentLimit": 15,
|
|
"packageRules": [
|
|
{
|
|
matchDatasources: [
|
|
"maven"
|
|
],
|
|
registryUrls: [
|
|
"https://maven.google.com/",
|
|
"https://repo1.maven.org/maven2",
|
|
"https://plugins.gradle.org/m2/",
|
|
"https://jitpack.io",
|
|
],
|
|
},
|
|
{
|
|
"matchPackageNames": [
|
|
"androidx.compose.compiler:compiler",
|
|
"com.google.devtools.ksp",
|
|
"dev.drewhamilton.poko",
|
|
"org.jetbrains.kotlin:kotlin-gradle-plugin",
|
|
"org.jetbrains.kotlin.plugin.serialization",
|
|
],
|
|
"groupName": "Kotlin and Compose",
|
|
},
|
|
{
|
|
"matchPackagePatterns": [
|
|
"^androidx.*",
|
|
],
|
|
"matchPackageNames": [
|
|
],
|
|
"groupName": "AndroidX"
|
|
},
|
|
{
|
|
"matchPackagePatterns": [
|
|
"^io.sentry",
|
|
"^sentry",
|
|
],
|
|
"groupName": "Sentry"
|
|
},
|
|
{
|
|
"matchPackageNames": [
|
|
"com.squareup.anvil",
|
|
// alpha17 and alpha18 have regressions with installing APKs
|
|
// https://issuetracker.google.com/issues/315337463
|
|
"com.android.test",
|
|
"com.android.tools.build:gradle",
|
|
],
|
|
"enabled": false,
|
|
},
|
|
],
|
|
"regexManagers": [
|
|
{
|
|
"fileMatch": [
|
|
"SpotlessPlugin\.kt$"
|
|
],
|
|
"matchStrings": [
|
|
"KTFMT_VERSION = \"(?<currentValue>.*)\""
|
|
],
|
|
"datasourceTemplate": "maven",
|
|
"depNameTemplate": "com.facebook:ktfmt",
|
|
"registryUrlTemplate": "https://repo1.maven.org/maven2/",
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"gradle/libs.versions.toml"
|
|
],
|
|
"matchStrings": [
|
|
"composeCompiler = \"(?<currentValue>.*)\""
|
|
],
|
|
"datasourceTemplate": "maven",
|
|
"depNameTemplate": "androidx.compose.compiler:compiler",
|
|
"registryUrlTemplate": "https://maven.google.com",
|
|
},
|
|
],
|
|
}
|