forked from signalfx/splunk-otel-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
49 lines (49 loc) · 1.45 KB
/
renovate.json5
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"ignorePaths": ["instrumentation/**"],
"packageRules": [
{
"matchPackagePrefixes": ["com.diffplug.spotless"],
"groupName": "spotless packages"
},
{
"matchPackagePrefixes": ["com.gradleup.shadow"],
"groupName": "gradle shadow packages"
},
{
// pinned version for compatibility
"matchFileNames": ["matrix/build.gradle.kts"],
"matchPackageNames": ["javax.servlet:javax.servlet-api"],
"matchUpdateTypes": ["major", "minor"],
"enabled": false
},
{
"matchPackageNames": ["docker.repo.splunkdev.net/ci-cd/ci-container/maven-3.8-jdk-17"],
"enabled": false
},
{
"matchPackageNames": [
"io.opentelemetry.proto:opentelemetry-proto",
"io.opentelemetry.semconv:opentelemetry-semconv"
],
// Renovate's default behavior is only to update from unstable -> unstable if it's for the
// major.minor.patch, under the assumption that you would want to update to the stable version
// of that release instead of the unstable version for a future release
"ignoreUnstable": false,
"allowedVersions": "!/\\-SNAPSHOT$/"
},
{
// snakeyaml-engine 3+ requires Java 11+
matchUpdateTypes: [
'major',
],
enabled: false,
matchPackageNames: [
'org.snakeyaml:snakeyaml-engine'
],
}
]
}