-
Notifications
You must be signed in to change notification settings - Fork 7
/
renovate.json
36 lines (36 loc) · 1.11 KB
/
renovate.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
{
"extends": ["group:all", ":dependencyDashboard"],
"enabledManagers": ["github-actions", "pre-commit", "regex"],
"github-actions": {
"fileMatch": [
"^{{cookiecutter.project_name}}\/((workflow-templates|\\.github\/workflows)\/[^/]+\\.ya?ml$|action\\.ya?ml$)"
]
},
"pre-commit": {
"enabled": true,
"fileMatch": [
"^.pre-commit-config.yaml$",
"^{{cookiecutter.project_name}}/.pre-commit-config.yaml$"
]
},
"includeForks": true,
"regexManagers": [
{
"fileMatch": [
"^.pre-commit-config.yaml$",
"^{{cookiecutter.project_name}}/.pre-commit-config.yaml$"
],
"matchStrings": [
"\\s*- (?<depName>.*?)==(?<currentValue>.*?)\\s+"
],
"datasourceTemplate": "pypi"
},
{
"fileMatch": ["action.yml"],
"matchStrings": [
"(?<depName>\\S+)==(?<currentValue>.*?)\\s+#\\s*renovate:\\s*?datasource=pypi"
],
"datasourceTemplate": "pypi"
}
]
}