forked from apache/fineract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
38 lines (38 loc) · 1.02 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
{
"extends": [
"config:base",
"group:allNonMajor",
"schedule:weekly",
"helpers:pinGitHubActionDigests"
],
"ignorePaths": [
"docs/**"
],
"labels": ["renovate"],
"packageRules": [{
"description": "Limit the aws sdk to monthly updates because otherwise it PRs every day",
"packageNames": ["com.amazonaws:*"],
"schedule": ["monthly"]
},
{
"matchPackageNames": ["org.eclipse.persistence:eclipselink"],
"allowedVersions": "<=2.7.10"
},
{
"matchPackageNames": ["org.eclipse.persistence:org.eclipse.persistence.jpa"],
"allowedVersions": "<=2.7.10"
},
{
"depTypeList": ["dependencies"],
"updateTypes": ["patch", "minor"],
"groupName": "non-major"
}],
"regexManagers": [
{
"fileMatch": ["^build\\.gradle$"],
"matchStrings": ["[\\s\\n{](mavenBom)\\s*['\"](?<depName>[a-zA-Z][-_a-zA-Z0-9.]*?:[a-zA-Z][-_a-zA-Z0-9.]*?):(?<currentValue>[a-zA-Z0-9][-.a-zA-Z0-9]*?)['\"]"],
"datasourceTemplate": "maven",
"versioningTemplate": "gradle"
}
]
}