|
1 | 1 | { |
2 | | - "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:recommended"], |
| 2 | + "extends": [ |
| 3 | + ":automergeDisabled", |
| 4 | + ":dependencyDashboard", |
| 5 | + ":disableRateLimiting", |
| 6 | + ":enableVulnerabilityAlertsWithLabel(security)", |
| 7 | + ":ignoreModulesAndTests", |
| 8 | + ":ignoreUnstable", |
| 9 | + ":label(dependencies)", |
| 10 | + ":maintainLockFilesMonthly", |
| 11 | + ":semanticPrefixFixDepsChoreOthers", |
| 12 | + ":separateMajorReleases", |
| 13 | + ":timezone(Europe/Dublin)", |
| 14 | + "schedule:weekends", |
| 15 | + "workarounds:all", |
| 16 | + "helpers:pinGitHubActionDigests", |
| 17 | + ":semanticCommits" |
| 18 | + ], |
4 | 19 | "packageRules": [ |
5 | 20 | { |
6 | | - "matchUpdateTypes": ["minor", "patch"], |
| 21 | + "description": "Add `docker` label for Dockerfile or docker-compose related updates.", |
| 22 | + "matchManagers": [ |
| 23 | + "docker-compose", |
| 24 | + "dockerfile" |
| 25 | + ], |
| 26 | + "addLabels": [ |
| 27 | + "docker" |
| 28 | + ] |
| 29 | + }, |
| 30 | + { |
| 31 | + "description": "Group all minor and patch updates together for gradle.", |
| 32 | + "matchManagers": [ |
| 33 | + "gradle" |
| 34 | + ], |
| 35 | + "matchUpdateTypes": [ |
| 36 | + "minor", |
| 37 | + "patch" |
| 38 | + ], |
| 39 | + "groupName": "all non-major dependencies", |
| 40 | + "groupSlug": "all-minor-patch" |
| 41 | + }, |
| 42 | + { |
| 43 | + "description": "Group all minor and patch updates together for docker.", |
| 44 | + "matchManagers": [ |
| 45 | + "docker-compose", |
| 46 | + "dockerfile" |
| 47 | + ], |
| 48 | + "matchUpdateTypes": [ |
| 49 | + "minor", |
| 50 | + "patch" |
| 51 | + ], |
| 52 | + "groupName": "all non-major dependencies", |
| 53 | + "groupSlug": "all-minor-patch" |
| 54 | + }, |
| 55 | + { |
| 56 | + "matchUpdateTypes": [ |
| 57 | + "minor", |
| 58 | + "patch" |
| 59 | + ], |
7 | 60 | "matchCurrentVersion": "!/^0/", |
8 | 61 | "automerge": true |
9 | 62 | } |
10 | | - ] |
| 63 | + ], |
| 64 | + "rebaseWhen": "conflicted" |
11 | 65 | } |
0 commit comments