-
Notifications
You must be signed in to change notification settings - Fork 2
/
renovate.json5
43 lines (42 loc) · 947 Bytes
/
renovate.json5
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
{
extends: [
":separateMajorReleases",
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":semanticPrefixFixDepsChoreOthers",
":updateNotScheduled",
":automergeDisabled",
":disablePeerDependencies",
":maintainLockFilesDisabled",
":disableRateLimiting",
],
includePaths: ["packages/**", "starters/**"],
ignorePaths: ["**/node_modules/**"],
major: {
masterIssueApproval: true,
},
masterIssue: true,
ignoreDeps: ["react", "react-dom"],
rangeStrategy: "bump",
bumpVersion: null,
semanticCommitScope: null,
prHourlyLimit: 0,
packageRules: [
// these rules define group names
{
groupName: "packages",
paths: ["packages/**"],
},
{
groupName: "starters for testing",
paths: ["starters/**"],
},
{
depTypeList: ["engines"],
enabled: false,
},
],
timezone: "GMT",
schedule: "after 10am on Monday",
}