-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconservative.json
47 lines (45 loc) · 1.6 KB
/
conservative.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>scratchfoundation/scratch-renovate-config:base"
],
"packageRules": [
{
"description": "enable auto-merge for minor, patch, and in-range updates of internal dependencies which use semver",
"matchCurrentVersion": "!/^0/",
"matchUpdateTypes": ["minor", "patch", "lockFileMaintenance"],
"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/"
],
"automerge": true,
"rebaseWhen": "auto"
},
{
"description": "enable auto-merge for all updates of internal dependencies which don't yet use semver",
"matchCurrentVersion": "/^0.*-prerelease/",
"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/"
],
"automerge": true,
"rebaseWhen": "auto"
}
]
}