forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
33 lines (33 loc) · 867 Bytes
/
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
{
"extends": [
"config:base"
],
"automerge": true,
"major": {
"automerge": false
},
"minor": {
"automerge": false
},
"rangeStrategy": "pin",
"packageRules": [
{
"packageNames": [
"node"
],
"enabled": false
}
],
"separateMultipleMajor": true,
"labels": ["type: dependencies", "renovate"],
"commitMessage": "{{semanticPrefix}}Update {{depName}} to {{newVersion}} 🌟",
"prTitle": "{{semanticPrefix}}{{#if isPin}}Pin{{else}}Update{{/if}} dependency {{depName}} to version {{#if isRange}}{{newVersion}}{{else}}{{#if isMajor}}{{newVersionMajor}}.x{{else}}{{newVersion}}{{/if}}{{/if}} 🌟",
"prHourlyLimit": 1,
"prConcurrentLimit": 30,
"updateNotScheduled": false,
"timezone": "America/New_York",
"schedule": [
"after 10pm and before 5am on every weekday",
"every weekend"
]
}