|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": [ |
4 | | - ":dependencyDashboard", |
| 4 | + "config:recommended", |
| 5 | + ":dependencyDashboardApproval", |
5 | 6 | ":maintainLockFilesWeekly", |
6 | 7 | ":prHourlyLimitNone" |
7 | 8 | ], |
|
10 | 11 | "enabled": true |
11 | 12 | }, |
12 | 13 | "baseBranches": ["main"], |
| 14 | + "recreateWhen": "never", |
| 15 | + "timezone": "America/New_York", |
13 | 16 | "packageRules": [ |
14 | 17 | { |
15 | | - "matchPackagePatterns": ["*"], |
16 | | - "groupName": "python-dependencies" |
17 | | - } |
| 18 | + "groupName": "Python dependencies (minor and patch)", |
| 19 | + "matchUpdateTypes": ["minor", "patch"], |
| 20 | + "matchFileNames": ["pyproject.toml"], |
| 21 | + "schedule": ["before 7am on monday"], |
| 22 | + "prPriority": 7 |
| 23 | + }, |
| 24 | + { |
| 25 | + "groupName": "Python dependencies (major)", |
| 26 | + "matchUpdateTypes": ["major"], |
| 27 | + "matchFileNames": ["pyproject.toml"], |
| 28 | + "schedule": ["after 7pm on thursday"], |
| 29 | + "prPriority": 10 |
| 30 | + }, |
| 31 | + { |
| 32 | + "groupName": "GitHub Actions", |
| 33 | + "matchManagers": ["github-actions"], |
| 34 | + "matchFileNames": [".github/workflows/**"], |
| 35 | + "schedule": ["before 6pm on wednesday"], |
| 36 | + "prPriority": 5 |
| 37 | + } |
18 | 38 | ] |
19 | 39 | } |
0 commit comments