-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
71 lines (71 loc) · 3.04 KB
/
renovate.json
File metadata and controls
71 lines (71 loc) · 3.04 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"autoApprove": true,
"automerge": true,
"platformAutomerge": true,
"branchConcurrentLimit": 10,
"prConcurrentLimit": 3,
"ignoreDeps": ["com.android.tools.build:gradle"],
"packageRules": [
{
"groupName": "Kotlin",
"matchPackageNames": ["/^org\\.jetbrains\\.kotlin[.:]/"]
},
{
"groupName": "firebase",
"matchPackageNames": ["/^com\\.google\\.firebase/"],
"changelogUrl": "https://firebase.google.com/support/release-notes/android#{{#if (containsString depName 'crashlytics')}}crashlytics_gradle_plugin{{/if}}{{#if (containsString depName 'perf')}}performance_gradle_plugin{{/if}}{{#if (containsString depName 'bom')}}bom{{/if}}_v{{{replace '\\.' '-' newVersion}}}"
},
{
"groupName": "Google Services plugin",
"matchPackageNames": ["/google-services/"],
"sourceUrl": "https://github.com/google/play-services-plugins",
"changelogUrl": "https://firebase.google.com/support/release-notes/android#google-services_plugin_v{{{replace '\\.' '-' newVersion}}}"
},
{
"groupName": "koin.annotations",
"matchPackageNames": ["/koin-annotations/", "/koin-ksp-compiler/"],
"sourceUrl": "https://github.com/InsertKoinIO/koin-annotations",
"changelogUrl": "https://github.com/InsertKoinIO/koin-annotations/releases"
},
{
"groupName": "ktfmt",
"matchDepNames": ["com.ncorti.ktfmt.gradle"],
"sourceUrl": "https://github.com/cortinico/ktfmt-gradle",
"changelogUrl": "https://github.com/cortinico/ktfmt-gradle/releases"
},
{
"groupName": "typesafe conventions plugin",
"matchDepNames": ["dev.panuszewski.typesafe-conventions"],
"sourceUrl": "https://github.com/radoslaw-panuszewski/typesafe-conventions-gradle-plugin",
"changelogUrl": "https://github.com/radoslaw-panuszewski/typesafe-conventions-gradle-plugin/releases"
},
{
"groupName": "Arcmutate plugins",
"matchDepNames": ["/^com\\.arcmutate/"],
"changelogUrl": "https://docs.arcmutate.com/docs/releases/{{#if (containsString depName 'kotlin')}}kotlin{{else if (containsString depName 'git')}}git{{else}}base{{/if}}-plugin.html"
},
{
"groupName": "ruby",
"matchSourceUrls": ["https://github.com/ruby/ruby", "https://github.com/ruby/setup-ruby"],
"commitMessageExtra": "to {{upgrades.0.newVersion}}"
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update Pitest {{#if (containsString commitMessageTopic 'JUNIT5')}}JUnit5 plugin {{/if}} version in build-logic",
"managerFilePatterns": [
"build-logic/src/main/kotlin/artemis/agent/gradle/Helpers.kt"
],
"matchStrings": [
"private const val (?<commitMessageTopic>(PITEST|JUNIT5)_VERSION) = \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"datasourceTemplate": "maven",
"depNameTemplate": "org.pitest:pitest{{#if (containsString commitMessageTopic 'JUNIT5')}}-junit5-plugin{{/if}}"
}
]
}