-
Notifications
You must be signed in to change notification settings - Fork 12
/
renovate.json
57 lines (57 loc) · 1.86 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableRateLimiting",
":pathSemanticCommitType(versions-androidx/libs.versions.toml, androidx)",
":pathSemanticCommitType(versions-redmadrobot/libs.versions.toml, rmr)",
":pathSemanticCommitType(versions-stack/libs.versions.toml, stack)",
":reviewer(team:android-infrastructure)"
],
"packageRules": [
{
"description": "Dependency update commit format for shared catalogs",
"matchFileNames": ["versions-*/libs.versions.toml"],
"extends": [":semanticCommitScopeDisabled"],
"commitMessageAction": null,
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "{{newVersion}}"
},
{
"description": "Group together all Jetpack Compose components",
"matchPackagePrefixes": [
"androidx.compose:",
"androidx.compose.animation:",
"androidx.compose.foundation:",
"androidx.compose.material:",
"androidx.compose.material3:",
"androidx.compose.runtime:",
"androidx.compose.ui:"
],
"groupName": "compose-bom"
},
{
"description": "Group together all Firebase components",
"matchPackagePrefixes": ["com.google.firebase"],
"groupName": "firebase-bom"
},
{
"description": "Configure repository for Google's plugins",
"matchDepTypes": ["plugin"],
"matchPackagePrefixes": [
"androidx.",
"com.android.",
"com.google."
],
"registryUrls": ["https://dl.google.com/android/maven2"]
},
{
"description": "Configure dependencies to be looked up in Maven Central repository strictly",
"matchPackagePrefixes": [
"com.redmadrobot:pinkman",
"com.google.dagger"
],
"registryUrls": ["https://repo.maven.apache.org/maven2"]
}
]
}