-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
77 lines (77 loc) · 1.8 KB
/
renovate.json
File metadata and controls
77 lines (77 loc) · 1.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": ["patch", "pin", "digest"],
"automerge": false,
"automergeType": "pr",
"addLabels": ["patch"]
},
{
"matchUpdateTypes": ["minor"],
"automerge": false,
"addLabels": ["minor"]
},
{
"matchUpdateTypes": ["major"],
"automerge": false,
"addLabels": ["major"]
},
{
"matchDepTypes": ["ruby", "bundler", "Gemfile", "Gemfile.lock"],
"matchUpdateTypes": ["patch"],
"addLabels": ["bundler"],
"automerge": false,
"automergeType": "pr"
},
{
"matchDepTypes": ["ruby", "bundler", "Gemfile", "Gemfile.lock"],
"matchUpdateTypes": ["minor", "major"],
"addLabels": ["bundler"],
"automerge": false
},
{
"matchDepTypes": [".ruby-version"],
"matchUpdateTypes": ["patch"],
"addLabels": ["ruby-version"],
"automerge": false,
"automergeType": "pr"
},
{
"matchDepTypes": [".ruby-version"],
"matchUpdateTypes": ["minor", "major"],
"addLabels": ["ruby-version"],
"automerge": false
},
{
"matchFileNames": [".github/workflows/ruby.yml"],
"matchUpdateTypes": ["patch", "minor"],
"addLabels": ["github-actions"],
"automerge": false,
"automergeType": "pr"
}
],
"docker": {
"enabled": false
},
"ignorePaths": [
"Dockerfile", "Dockerfile.*"
],
"rangeStrategy": "replace",
"separateMajorMinor": true,
"prCreation": "immediate",
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"ignoreUnstable": true,
"dependencyDashboard": true,
"rebaseWhen": "behind-base-branch",
"labels": [
"dependencies"
],
"schedule": [
"before 2am"
]
}