-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathrenovate.json
More file actions
37 lines (37 loc) · 1.03 KB
/
renovate.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"extends": ["config:base", ":semanticCommitTypeAll(chore)"],
"pinVersions": false,
"separateMajorMinor": false,
"dependencyDashboard": false,
"semanticCommits": "enabled",
"minimumReleaseAge": "1 day",
"internalChecksFilter": "strict",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 2am"],
"automerge": true,
"automergeType": "branch"
},
"packageRules": [
{
"matchUpdateTypes": ["patch", "minor"],
"matchCurrentVersion": "!/^0/",
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major",
"automerge": true,
"automergeType": "branch"
},
{
"matchPackageNames": [
"@apify/*",
"@crawlee/*",
"apify-client",
"apify",
"crawlee",
"got-scraping"
],
"minimumReleaseAge": "0 days"
}
],
"schedule": ["every weekday"]
}