|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "enabledManagers": ["dockerfile", "github-actions", "npm"], |
4 | | - "extends": ["config:base", ":combinePatchMinorReleases"], |
5 | | - "baseBranchPatterns": ["beta"], |
6 | | - "assignees": ["team:console"], |
| 3 | + "enabledManagers": [ |
| 4 | + "dockerfile", |
| 5 | + "github-actions", |
| 6 | + "npm" |
| 7 | + ], |
| 8 | + "extends": [ |
| 9 | + "config:recommended", |
| 10 | + ":combinePatchMinorReleases" |
| 11 | + ], |
| 12 | + "baseBranchPatterns": [ |
| 13 | + "beta" |
| 14 | + ], |
| 15 | + "assignees": [ |
| 16 | + "team:console" |
| 17 | + ], |
7 | 18 | "assigneesSampleSize": 1, |
8 | | - "reviewers": ["team:console"], |
| 19 | + "reviewers": [ |
| 20 | + "team:console" |
| 21 | + ], |
9 | 22 | "reviewersSampleSize": 2, |
10 | 23 | "prHourlyLimit": 5, |
11 | 24 | "prConcurrentLimit": 10, |
12 | | - "labels": ["dependencies"], |
| 25 | + "labels": [ |
| 26 | + "dependencies" |
| 27 | + ], |
13 | 28 | "rangeStrategy": "pin", |
14 | 29 | "semanticCommitType": "chore", |
15 | 30 | "semanticCommitScope": "deps", |
|
22 | 37 | ], |
23 | 38 | "packageRules": [ |
24 | 39 | { |
25 | | - "matchDepTypes": ["engines", "peerDependencies"], |
26 | | - "versionStrategy": "widen" |
| 40 | + "matchDepTypes": [ |
| 41 | + "engines", |
| 42 | + "peerDependencies" |
| 43 | + ], |
| 44 | + "rangeStrategy": "widen" |
27 | 45 | }, |
28 | 46 | { |
29 | | - "matchManagers": ["dockerfile", "github-actions"], |
| 47 | + "matchManagers": [ |
| 48 | + "dockerfile", |
| 49 | + "github-actions" |
| 50 | + ], |
30 | 51 | "semanticCommitScope": "devDeps" |
31 | 52 | }, |
32 | 53 | { |
33 | 54 | "semanticCommitScope": "devDeps", |
34 | | - "matchDepTypes": ["packageManager", "devDependencies"], |
35 | | - "matchUpdateTypes": ["major"] |
| 55 | + "matchDepTypes": [ |
| 56 | + "packageManager", |
| 57 | + "devDependencies" |
| 58 | + ], |
| 59 | + "matchUpdateTypes": [ |
| 60 | + "major" |
| 61 | + ] |
36 | 62 | }, |
37 | 63 | { |
38 | 64 | "automerge": true, |
39 | 65 | "automergeType": "branch", |
40 | 66 | "semanticCommitScope": "devDeps", |
41 | | - "matchDepTypes": ["packageManager", "devDependencies"], |
42 | | - "matchUpdateTypes": ["minor", "patch"] |
| 67 | + "matchDepTypes": [ |
| 68 | + "packageManager", |
| 69 | + "devDependencies" |
| 70 | + ], |
| 71 | + "matchUpdateTypes": [ |
| 72 | + "minor", |
| 73 | + "patch" |
| 74 | + ] |
43 | 75 | }, |
44 | 76 | { |
45 | 77 | "automerge": false, |
46 | | - "matchPackagePatterns": ["^@scaleway/"], |
47 | | - "stabilityDays": 0, |
48 | | - "matchUpdateTypes": ["major", "minor", "patch"] |
| 78 | + "minimumReleaseAge": null, |
| 79 | + "matchUpdateTypes": [ |
| 80 | + "major", |
| 81 | + "minor", |
| 82 | + "patch" |
| 83 | + ], |
| 84 | + "matchPackageNames": [ |
| 85 | + "/^@scaleway//" |
| 86 | + ] |
49 | 87 | }, |
50 | 88 | { |
51 | 89 | "automerge": true, |
52 | | - "matchPackagePatterns": ["^@uiw/"], |
53 | 90 | "groupName": "Code Editor", |
54 | 91 | "groupSlug": "uiw-code-editor-react", |
55 | | - "stabilityDays": 5, |
56 | | - "matchUpdateTypes": ["minor", "patch"] |
| 92 | + "minimumReleaseAge": "5 days", |
| 93 | + "matchUpdateTypes": [ |
| 94 | + "minor", |
| 95 | + "patch" |
| 96 | + ], |
| 97 | + "matchPackageNames": [ |
| 98 | + "/^@uiw//" |
| 99 | + ] |
57 | 100 | }, |
58 | 101 | { |
59 | 102 | "automerge": false, |
60 | | - "matchPackagePatterns": ["^@uiw/"], |
61 | 103 | "groupName": "Code Editor", |
62 | 104 | "groupSlug": "uiw-code-editor-react", |
63 | | - "stabilityDays": 5, |
64 | | - "matchUpdateTypes": ["major"] |
| 105 | + "minimumReleaseAge": "5 days", |
| 106 | + "matchUpdateTypes": [ |
| 107 | + "major" |
| 108 | + ], |
| 109 | + "matchPackageNames": [ |
| 110 | + "/^@uiw//" |
| 111 | + ] |
65 | 112 | }, |
66 | 113 | { |
67 | | - "matchPackagePatterns": ["^@testing-library"], |
68 | 114 | "groupName": "Testing library", |
69 | 115 | "groupSlug": "testing-library", |
70 | | - "matchUpdateTypes": ["major", "minor", "patch"] |
| 116 | + "matchUpdateTypes": [ |
| 117 | + "major", |
| 118 | + "minor", |
| 119 | + "patch" |
| 120 | + ], |
| 121 | + "matchPackageNames": [ |
| 122 | + "/^@testing-library/" |
| 123 | + ] |
71 | 124 | }, |
72 | 125 | { |
73 | | - "labels": ["UPDATE-MAJOR"], |
74 | | - "stabilityDays": 14, |
75 | | - "matchUpdateTypes": ["major"] |
| 126 | + "labels": [ |
| 127 | + "UPDATE-MAJOR" |
| 128 | + ], |
| 129 | + "minimumReleaseAge": "14 days", |
| 130 | + "matchUpdateTypes": [ |
| 131 | + "major" |
| 132 | + ] |
76 | 133 | }, |
77 | 134 | { |
78 | | - "labels": ["UPDATE-MINOR"], |
79 | | - "stabilityDays": 5, |
80 | | - "matchUpdateTypes": ["minor"], |
| 135 | + "labels": [ |
| 136 | + "UPDATE-MINOR" |
| 137 | + ], |
| 138 | + "minimumReleaseAge": "5 days", |
| 139 | + "matchUpdateTypes": [ |
| 140 | + "minor" |
| 141 | + ], |
81 | 142 | "automerge": true |
82 | 143 | }, |
83 | 144 | { |
84 | | - "labels": ["UPDATE-PATCH"], |
85 | | - "stabilityDays": 1, |
86 | | - "matchUpdateTypes": ["patch"], |
| 145 | + "labels": [ |
| 146 | + "UPDATE-PATCH" |
| 147 | + ], |
| 148 | + "minimumReleaseAge": "1 day", |
| 149 | + "matchUpdateTypes": [ |
| 150 | + "patch" |
| 151 | + ], |
87 | 152 | "automerge": true |
88 | 153 | }, |
89 | 154 | { |
90 | | - "matchDepTypes": ["engines"], |
| 155 | + "matchDepTypes": [ |
| 156 | + "engines" |
| 157 | + ], |
91 | 158 | "rangeStrategy": "widen" |
92 | 159 | } |
93 | 160 | ] |
|
0 commit comments