-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathrenovate.json
More file actions
39 lines (38 loc) · 1.08 KB
/
Copy pathrenovate.json
File metadata and controls
39 lines (38 loc) · 1.08 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"minimumReleaseAge": "7 days",
"automergeType": "branch",
"ignorePaths": ["manualTest/build.gradle.kts"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest", "pinDigest", "lockFileMaintenance"],
"automerge": true
},
{
"matchDatasources": ["maven"],
"matchPackageNames": ["org.spockframework:spock-bom"],
"versionCompatibility": "^(?<version>[^-]+(?<compatibility>-.*))$"
},
{
"matchDepNames": ["gradle-backward"],
"allowedVersions": ">= 8.14 < 9.0"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/(^|/)\\.github/workflows/.+\\.ya?ml$/",
"/(^|/)action\\.ya?ml$/"
],
"datasourceTemplate": "gradle-version",
"depNameTemplate": "gradle-backward",
"matchStrings": [
"# renovate: gradle-backwards-compatibility\\s+[A-Za-z0-9_]+?_VERSION\\s*:\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"
]
}
]
}