|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:base"], |
| 3 | + "extends": [ |
| 4 | + "config:recommended" |
| 5 | + ], |
4 | 6 | "separateMajorMinor": false, |
5 | 7 | "pip-compile": { |
6 | | - "fileMatch": ["(^|/)requirements\\.in$"] |
| 8 | + "managerFilePatterns": [ |
| 9 | + "/(^|/)requirements\\.txt$/" |
| 10 | + ] |
7 | 11 | }, |
8 | 12 | "pip_requirements": { |
9 | 13 | "enabled": false |
10 | 14 | }, |
11 | 15 | "packageRules": [ |
12 | 16 | { |
13 | 17 | "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 | + ] |
17 | 27 | }, |
18 | 28 | { |
19 | 29 | "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 | + ] |
23 | 39 | }, |
24 | 40 | { |
25 | 41 | "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 | + ] |
28 | 48 | } |
29 | 49 | ] |
30 | 50 | } |
0 commit comments