-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
42 lines (42 loc) · 1.26 KB
/
default.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"assigneesFromCodeOwners": "true",
"commitMessagePrefix": "chore(deps): ",
"dependencyDashboard": "false",
"rebaseWhen": "conflicted",
"schedule": "on Wednesdays",
"prHourlyLimit": 2,
"postUpdateOptions": ["gomodUpdateImportPaths, gomodTidy"],
"packageRules": [
{
"groupName": "js minor and patch",
"matchCategories": ["js"],
"matchUpdateTypes": ["digest", "patch", "minor"],
"minimumReleaseAge": "3 days"
},
{
"groupName": "go minor and patch",
"matchCategories": ["golang"],
"matchUpdateTypes": ["digest", "patch", "minor"],
"minimumReleaseAge": "3 days"
},
{
"groupName": "infra minor and patch",
"matchCategories": ["iac", "kubernetes", "terraform", "docker", "helm"],
"matchUpdateTypes": ["digest", "patch", "minor"],
"minimumReleaseAge": "3 days"
},
{
"groupName": "dev minor and patch",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["digest", "patch", "minor"],
"minimumReleaseAge": "3 days"
},
{
"groupName": "actions",
"matchManagers": ["github-actions"],
"minimumReleaseAge": "3 days"
}
]
}