-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.json
72 lines (63 loc) · 2.05 KB
/
base.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
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":semanticCommits",
":separateMajorReleases"
],
"timezone": "America/New_York",
"prConcurrentLimit": 0,
"prHourlyLimit": 5,
"minimumReleaseAge": "3 days",
"rebaseWhen": "never",
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true,
"rebaseWhen": "conflicted",
"recreateWhen": "auto",
"schedule": ["at any time"]
},
"vulnerabilityAlerts": {
"addLabels": ["security"]
},
"packageRules": [
{
"description": "handle internal dependencies first (higher priority) and exempt them from stabilityDays requirement",
"matchSourceUrlPrefixes": [
"git+https://github.com/scratchfoundation/",
"git+ssh://[email protected]/scratchfoundation/",
"git://github.com/scratchfoundation/",
"[email protected]:scratchfoundation/",
"https://github.com/scratchfoundation/",
"git+https://github.com/LLK/",
"git+ssh://[email protected]/LLK/",
"git://github.com/LLK/",
"[email protected]:LLK/",
"https://github.com/LLK/"
],
"prPriority": 5,
"minimumReleaseAge": null,
"rangeStrategy": "pin",
"minor": {
"description": "A minor bump to an internal dependency should cause a minor bump in this package's version",
"addLabels": ["internal dependency"],
"semanticCommitType": "feat"
},
"patch": {
"description": "A patch bump to an internal dependency should cause a patch bump in this package's version",
"addLabels": ["internal dependency"],
"semanticCommitType": "fix"
}
},
{
"description": "eslint-config-scratch should not cause a new release (also avoids circular dependency)",
"matchPackageNames": ["eslint-config-scratch"],
"semanticCommitType": "style"
},
{
"description": "allow choosing Node upgrades from the full menu",
"matchPackageNames": ["node"],
"separateMultipleMajor": true
}
]
}