-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrenovate.json
61 lines (61 loc) · 1.7 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
60
61
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"schedule:nonOfficeHours",
":combinePatchMinorReleases",
":automergeDigest",
":automergePatch",
":automergeRequireAllStatusChecks",
":ignoreUnstable",
"group:recommended"
],
"ignoreDeps": [
"org.eclipse.m2e:lifecycle-mapping",
"se.bjurr.gitchangelog:git-changelog-maven-plugin"
],
"labels": [
"dependencies"
],
"packageRules": [
{
"description": "Updates Java Development Kit in conjunction with the custom managers below. Disabled for now in favor of compatibility.",
"matchDatasources": [
"java-version"
],
"groupName": "Java Development Kit (JDK)",
"enabled": false
}
],
"customManagers": [
{
"description": "Update java version in Maven pom.xml",
"customType": "regex",
"datasourceTemplate": "java-version",
"depNameTemplate": "java",
"packageNameTemplate": "",
"fileMatch": [
"(^|/|\\.)pom\\.xml$"
],
"matchStrings": [
"<java.version>(?<currentValue>[0-9]+)<\/java.version>"
],
"extractVersionTemplate": "^(?<version>\\d+).*$"
},
{
"description": "Update java version in GitHub Action environment variable",
"customType": "regex",
"datasourceTemplate": "java-version",
"depNameTemplate": "java",
"packageNameTemplate": "",
"fileMatch": [
"^(workflow-templates|\\.github/workflows)\\/[^/]+\\.ya?ml$",
"(^|\\/)action\\.ya?ml$]"
],
"matchStrings": [
"JAVA_VERSION:\\s+?(?<currentValue>.*?)\\s+"
],
"extractVersionTemplate": "^(?<version>\\d+).*$"
}
]
}