-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
59 lines (59 loc) · 1.47 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
58
59
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"groupName": "Kotlin, KSP and Compose Compiler",
"groupSlug": "kotlin",
"matchPackagePrefixes": [
"com.google.devtools.ksp",
"androidx.compose.compiler",
"com.android.tools.build:gradle"
],
"matchPackagePatterns": [
"org.jetbrains.kotlin.*"
],
"enabled": false
},
{
"description": "Automatically merge minor and patch-level updates",
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
},
{
"groupName": "Convention Plugins",
"matchPackagePrefixes": [],
"matchPackagePatterns": [
"app.*",
"library.*",
"common.*"
],
"enabled": false
},
{
"groupName": "Convention Plugins with Exact Namings",
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"^app.main.*",
"^app.compose.*",
"^app.jacoco.*",
"^app.firebase.*",
"^library.main.*",
"^library.compose.*",
"^library.jacoco.*",
"^common.feature.*",
"^common.test.*",
"^common.signing.config.*",
"^common.api.key.provider.*",
"^common.git.hooks.*",
"^common.detekt.*"
],
"excludePackageNames": [],
"enabled": true
}
]
}