-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json
39 lines (39 loc) · 1.34 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
{
"commitMessageExtra": "from `{{#if isPinDigest}}{{{currentDigestShort}}}{{else}}{{#if isSingleVersion}}{{{currentVersion}}}{{else}}{{#if currentValue}}{{{currentValue}}}{{else}}{{{currentDigestShort}}}{{/if}}{{/if}}{{/if}}` to `{{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}{{{newVersion}}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}`",
"extends": [
"config:base",
"github>whitesource/merge-confidence:beta"
],
"schedule": [ "on Monday" ],
"labels": ["dependencies"],
"packageRules": [
{
"matchPackagePatterns": [".*"],
"allowedVersions": "/^(v[0-9]+|v?[0-9]+.[0-9]+.[0-9]+|(main|master|develop)-[0-9]+)$/"
},
{
"matchPackageNames": ["postgres"],
"allowedVersions": "13"
},
{
"groupName": "Kotlin",
"matchPackagePrefixes": [
"org.jetbrains.kotlin"
]
}
],
"prConcurrentLimit": 4,
"rangeStrategy": "pin",
"ignorePaths": [
"**/bower_components/**",
"**/vendor/**",
"**/examples/**",
"**/__tests__/**",
"**/__fixtures__/**"
],
"gradle": {
"fileMatch": [
"(^|/)buildSrc/.*"
]
}
}