Skip to content

Commit 919885a

Browse files
Migrate config .github/renovate.json (#69)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 89f72a8 commit 919885a

File tree

1 file changed

+30
-10
lines changed

1 file changed

+30
-10
lines changed

.github/renovate.json

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,50 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": ["config:base"],
3+
"extends": [
4+
"config:recommended"
5+
],
46
"separateMajorMinor": false,
57
"pip-compile": {
6-
"fileMatch": ["(^|/)requirements\\.in$"]
8+
"managerFilePatterns": [
9+
"/(^|/)requirements\\.txt$/"
10+
]
711
},
812
"pip_requirements": {
913
"enabled": false
1014
},
1115
"packageRules": [
1216
{
1317
"groupName": "Main NPM deps",
14-
"matchPaths": ["+(package*.json)"],
15-
"lockFileMaintenance": {"enabled": true},
16-
"schedule": ["after 5am and before 8am on the first day of the month"]
18+
"matchFileNames": [
19+
"+(package*.json)"
20+
],
21+
"lockFileMaintenance": {
22+
"enabled": true
23+
},
24+
"schedule": [
25+
"after 5am and before 8am on the first day of the month"
26+
]
1727
},
1828
{
1929
"groupName": "Docs Python deps",
20-
"matchManagers": ["pip-compile"],
21-
"matchFiles": ["docs/requirements.in"],
22-
"schedule": ["after 5am and before 8am on the first day of the month"]
30+
"matchManagers": [
31+
"pip-compile"
32+
],
33+
"matchFileNames": [
34+
"docs/requirements.in"
35+
],
36+
"schedule": [
37+
"after 5am and before 8am on the first day of the month"
38+
]
2339
},
2440
{
2541
"groupName": "GH Actions",
26-
"matchManagers": ["github-actions"],
27-
"schedule": ["after 5am and before 8am on the first day of the month"]
42+
"matchManagers": [
43+
"github-actions"
44+
],
45+
"schedule": [
46+
"after 5am and before 8am on the first day of the month"
47+
]
2848
}
2949
]
3050
}

0 commit comments

Comments
 (0)