-
Notifications
You must be signed in to change notification settings - Fork 19
/
renovate.json
45 lines (45 loc) · 967 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr"
},
{
"matchDepTypes": ["ruby", "bundler", "Gemfile", "Gemfile.lock"],
"addLabels": ["bundler"]
},
{
"matchDepTypes": [".ruby-version"],
"addLabels": ["ruby-version"],
"automerge": false
}
],
"docker": {
"enabled": false
},
"ruby": {
"stabilityDays": 60
},
"ignorePaths": [
"Dockerfile", "Dockerfile.*", ".github/workflows/build_deploy_staging.yml",
".github/workflows/remove_st_after_pr.yml"
],
"rangeStrategy": "replace",
"separateMajorMinor": true,
"prCreation": "immediate",
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"ignoreUnstable": true,
"dependencyDashboard": true,
"rebaseWhen": "behind-base-branch",
"labels": [
"dependencies"
],
"schedule": [
"before 2am"
]
}