This repository was archived by the owner on Jul 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrenovate.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathrenovate.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":preserveSemverRanges"
],
"osvVulnerabilityAlerts": true,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
},
"prConcurrentLimit": 4,
"platformAutomerge": false,
"rangeStrategy": "replace",
"packageRules": [
{
"description": "Disable major updates by default",
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Group json4s updates",
"matchPackageNames": [
"org.json4s:json4s-jackson_2.13",
"org.json4s:json4s-ast_2.13",
"org.json4s:json4s-ext_2.13"
],
"groupName": "json4s"
},
{
"description": "Group Scala updates",
"matchPackageNames": [
"org.scala-lang:scala-library",
"org.scala-lang:scala-reflect",
"org.scala-lang:scala-compiler"
],
"groupName": "scala"
},
{
"description": "Allow major updates for GitHub Actions and CI images",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"enabled": true
},
{
"description": "Allow major updates for Docker/CI images",
"matchManagers": ["dockerfile", "docker-compose"],
"matchUpdateTypes": ["major"],
"enabled": true
},
{
"description": "Wait 3 days before updating Maven dependencies",
"matchManagers": ["maven"],
"minimumReleaseAge": "3 days"
}
]
}