-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrenovate.json
More file actions
33 lines (31 loc) · 867 Bytes
/
renovate.json
File metadata and controls
33 lines (31 loc) · 867 Bytes
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"
],
"description": "Renovate config for ScholarMarkdown. Major updates go via a PR; minor/patch updates are auto-merged when tests pass. Dependencies are checked every morning.",
"prCreation": "not-pending",
"stabilityDays": 1,
"statusCheckVerify": true,
"schedule": "before 7am every weekday",
"timezone": "Europe/Brussels",
"unicodeEmoji": true,
"vulnerabilityAlerts": {
"enabled": true
},
"rangeStrategy": "bump",
"packageRules": [
{
"matchManagers": ["bundler"],
"matchDepTypes": ["runtime", "development"],
"matchUpdateTypes": ["minor", "patch", "range"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeType": "branch"
},
{
"matchManagers": ["github-actions"],
"automerge": true,
"automergeType": "branch"
}
]
}