You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20
Original file line number
Diff line number
Diff line change
@@ -283,9 +283,12 @@ renovate:
283
283
matchUpdateTypes: []
284
284
matchDepTypes: []
285
285
matchFileNames: []
286
+
extends: []
286
287
allowedVersions: ""
288
+
minimumReleaseAge: ""
287
289
autoMerge: false
288
290
enabled: false
291
+
customManagers: []
289
292
```
290
293
291
294
Generate [RenovateBot](https://renovatebot.com/) config to automatically create pull requests weekly on Fridays with dependency updates.
@@ -319,6 +322,23 @@ packageRules:
319
322
enabled: false # see docker config section above
320
323
```
321
324
325
+
You can also define [`customManagers`](https://docs.renovatebot.com/modules/manager/regex/). An example to detect `ENVTEST_K8S_VERSION` env variable version and update it in `Makefile`
326
+
327
+
```yaml
328
+
customManagers:
329
+
- customType: "regex"
330
+
description: "Bump envtest version in the Makefile"
0 commit comments