-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
renovate.json
58 lines (58 loc) · 1.48 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommitsDisabled",
":label(dependencies)"
],
"rebaseWhen": "conflicted",
"packageRules": [
{
"description": "Allow EAPs for Ktor dependencies and use custom versioning to detect a build number",
"extends": [
"schedule:weekly"
],
"matchPackageNames": [
"io.ktor:*"
],
"fetchChangeLogs": "off",
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?:(?:-.+)?-eap-(?<build>\\d+))?$"
},
{
"description": "False positive dependency findings.",
"matchDepNames": [
"macosX64:linuxX64"
],
"enabled": false
},
{
"description": "Do not update Jetty 9.x used in ktor-server-jetty",
"matchPackageNames": [
"org.eclipse.jetty*"
],
"matchCurrentVersion": "[,10.0.0)",
"matchUpdateTypes": [
"major"
],
"enabled": false
},
{
"description": "Do not update Tomcat 9.x used in ktor-server-tomcat",
"matchPackageNames": [
"org.apache.tomcat*"
],
"matchCurrentVersion": "[,10.0.0)",
"matchUpdateTypes": [
"major"
],
"enabled": false
},
{
"description": "Do not update Develocity as server may not support a newer version",
"matchPackageNames": [
"com.gradle:develocity-gradle-plugin*"
],
"enabled": false
}
]
}