|
13 | 13 | '.kokoro/**', |
14 | 14 | ], |
15 | 15 | minimumReleaseAge: '3', |
16 | | - rebaseWhen: 'never', |
| 16 | + rebaseWhen: 'conflicted', |
17 | 17 | dependencyDashboardLabels: [ |
18 | 18 | 'type: process', |
19 | 19 | ], |
20 | 20 | packageRules: [ |
| 21 | + { |
| 22 | + matchFileNames: ["samples/index_tuning_sample/**"], |
| 23 | + groupName: "samples-index_tuning_sample", |
| 24 | + }, |
| 25 | + { |
| 26 | + matchFileNames: ["samples/langchain_on_vertexai/**"], |
| 27 | + groupName: "samples-langchain_on_vertexai", |
| 28 | + }, |
21 | 29 | { |
22 | 30 | groupName: 'GitHub Actions', |
23 | 31 | matchManagers: [ |
|
35 | 43 | ], |
36 | 44 | }, |
37 | 45 | { |
38 | | - groupName: 'python-nonmajor', |
39 | | - matchCategories: [ |
40 | | - 'python', |
41 | | - ], |
42 | | - matchUpdateTypes: [ |
43 | | - 'minor', |
44 | | - 'patch', |
45 | | - ], |
| 46 | + "description": "Disable numpy updates for python 3.10 in requirements.txt", |
| 47 | + "matchPackageNames": ["numpy"], |
| 48 | + "matchCurrentVersion": "<=2.2.6", |
| 49 | + "enabled": false |
| 50 | + }, |
| 51 | + { |
| 52 | + "description": "Disable numpy updates for python <=3.9 in requirements.txt", |
| 53 | + "matchPackageNames": ["numpy"], |
| 54 | + "matchCurrentVersion": "<=2.0.2", |
| 55 | + "enabled": false |
46 | 56 | }, |
| 57 | + { |
| 58 | + "description": "Disable numpy updates for python 3.10 in pyproject.toml", |
| 59 | + "matchFileNames": ["pyproject.toml"], |
| 60 | + "matchPackageNames": ["numpy"], |
| 61 | + "matchCurrentValue": ">=1.24.4, <=2.2.6", |
| 62 | + "enabled": false |
| 63 | + }, |
| 64 | + { |
| 65 | + "description": "Disable numpy updates for python <=3.9 in pyproject.toml", |
| 66 | + "matchFileNames": ["pyproject.toml"], |
| 67 | + "matchPackageNames": ["numpy"], |
| 68 | + "matchCurrentValue": ">=1.24.4, <=2.0.2", |
| 69 | + "enabled": false |
| 70 | + } |
47 | 71 | ], |
48 | 72 | } |
0 commit comments