forked from hadenlabs/renovate-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
49 lines (49 loc) · 1.17 KB
/
default.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
{
"force": {
"constraints": {
"node": "< 15.0.0"
}
},
"extends": [
"config:base",
":semanticCommits",
":semanticCommitTypeAll(ci)",
":semanticCommitScopeDisabled",
":dependencyDashboard",
":separateMultipleMajorReleases",
":timezone(America/Lima)",
"github>hadenlabs/renovate-config:go",
"github>hadenlabs/renovate-config:schedule",
"github>hadenlabs/renovate-config:automergePin",
"github>hadenlabs/renovate-config:automergeTypesMinor",
"github>hadenlabs/renovate-config:groupJest",
"github>hadenlabs/renovate-config:groupLinters"
],
"ignorePresets": [":prConcurrentLimit20"],
"labels": ["dependencies"],
"postUpdateOptions": ["yarnDedupeHighest", "gomodTidy"],
"dockerfile": {
"fileMatch": ["(^|/)Dockerfile-[^/]*$"]
},
"npm": {
"rangeStrategy": "bump"
},
"rangeStrategy": "update-lockfile",
"automerge": true,
"major": {
"automerge": false
},
"lockFileMaintenance": {
"enabled": true
},
"packageRules": [
{
"groupName": "boto3",
"matchPackageNames": ["boto3", "botocore"]
},
{
"matchPackageNames": ["husky"],
"allowedVersions": "<=6"
}
]
}