File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : "https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "extends" : [
4
+ "config:base" ,
5
+ ":label(dependencies)" ,
6
+ ":automergePatch" ,
7
+ ":combinePatchMinorReleases" ,
8
+ ":prConcurrentLimit10" ,
9
+ ":timezone(Europe/London)" ,
10
+ "group:recommended" ,
11
+ "group:testNonMajor" ,
12
+ "workarounds:all"
13
+ ] ,
14
+ "schedule" : "before 5am on Monday" ,
15
+ "prHourlyLimit" : 0 ,
16
+ "lockFileMaintenance" : {
17
+ "enabled" : true
18
+ } ,
19
+ "packageRules" : [
20
+ {
21
+ "matchUpdateTypes" : [
22
+ "minor" ,
23
+ "patch" ,
24
+ "pin" ,
25
+ "digest"
26
+ ] ,
27
+ "automerge" : true
28
+ } ,
29
+ {
30
+ // Compose compiler, molecule and ksp are tightly coupled to Kotlin version.
31
+ "matchPackagePrefixes" : [
32
+ "androidx.compose.compiler" ,
33
+ "app.cash.molecule" ,
34
+ "com.google.devtools.ksp" ,
35
+ "org.jetbrains.kotlin" ,
36
+ ] ,
37
+ "groupName" : "Kotlin/Compose"
38
+ }
39
+ ] ,
40
+ "force" : {
41
+ "constraints" : {
42
+ "java" : "= 18"
43
+ }
44
+ } ,
45
+ }
You can’t perform that action at this time.
0 commit comments