-
Notifications
You must be signed in to change notification settings - Fork 0
/
.renovaterc.json
37 lines (37 loc) · 1.04 KB
/
.renovaterc.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Establish base config, schedule, and manager defaults",
"addLabels": ["dependencies"],
"extends": ["config:base", "group:all", ":enablePreCommit"],
"dependencyDashboardApproval": false,
"schedule": ["on the 16th day of the month"],
"git-submodules": {
"enabled": true
},
"enabledManagers": [
"devcontainer",
"git-submodules",
"github-actions",
"pep621",
"pip_requirements",
"pre-commit"
],
"pip_requirements": {
"description": "Additionally monitor these files",
"fileMatch": ["(^|/)requirements/.+$"]
},
"ignorePaths": ["requirements/requirements.txt"],
"packageRules": [
{
"description": "Sync with template",
"groupName": "template",
"matchManagers": ["git-submodules"],
"matchDepNames": ["submodules/template"]
},
{
"description": "Manually test `.devcontainer` updates separately",
"groupName": "devcontainer",
"matchManagers": ["devcontainer"]
}
]
}