-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathrenovate.json
More file actions
31 lines (31 loc) · 979 Bytes
/
renovate.json
File metadata and controls
31 lines (31 loc) · 979 Bytes
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
{
"extends": ["config:base"],
"rangeStrategy": "update-lockfile",
"enabledManagers": ["npm", "github-actions"],
"gitIgnoredAuthors": ["github+renovate@scharley.me"],
"packageRules": [
{
"matchManagers": ["npm"],
"description": "Automatically merge all updates",
"addLabels": ["npm", "dependencies"],
"automerge": true,
"stabilityDays": 3,
"prCreation": "not-pending",
"rangeStrategy": "pin",
"depTypeList": ["dependencies", "devDependencies"]
},
{
"matchManagers": ["github-actions"],
"description": "Automatically merge all updates",
"addLabels": ["github_actions", "dependencies"],
"automerge": true,
"stabilityDays": 3,
"prCreation": "not-pending"
},
{
"matchPackageNames": ["@types/node"],
"description": "Do not automatically update @types/node; its major version should match the engines field in package.json",
"enabled": false
}
]
}