-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathrenovate.json
40 lines (40 loc) · 1.06 KB
/
renovate.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
{
"extends": ["config:recommended"],
"rangeStrategy": "pin",
"packageRules": [
{
"groupName": "all devDependencies",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch", "major"],
"schedule": ["before 5am on the first day of the month"],
"automerge": false
},
{
"groupName": "all dependencies",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch", "major"],
"schedule": ["every 3 months on the first day of the month"],
"automerge": false
},
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"schedule": ["before 5am on the first day of the month"],
"automerge": false
}
],
"ignoreDeps": [
"@intercom/intercom-react-native",
"@shopify/restyle",
"aws-amplify",
"eslint",
"eslint-plugin-sonarjs",
"jwt-decode",
"jest-expo",
"react-native-image-viewing"
],
"prCreation": "immediate",
"automerge": false,
"branchConcurrentLimit": 50,
"dependencyDashboard": true
}