-
Notifications
You must be signed in to change notification settings - Fork 0
/
.renovaterc.json
54 lines (54 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"$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": true,
"schedule": ["on the 16th day of the month"],
"git-submodules": {
"enabled": true
},
"enabledManagers": [
"custom.regex",
"devcontainer",
"git-submodules",
"github-actions",
"pep621",
"pip_requirements",
"pre-commit"
],
"customManagers": [
{
"description": "Pylance",
"customType": "regex",
"fileMatch": [
"^pyproject\\.toml$",
"^\\.devcontainer/devcontainer\\.json$"
],
"matchStrings": [
"PYRIGHT_PYTHON_PYLANCE_VERSION = \"(?<currentValue>.+)\"",
"ms-python\\.vscode-pylance@(?<currentValue>[^\"]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "microsoft/pylance-release"
}
],
"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"]
}
]
}