|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + ":semanticCommitTypeAll(chore)", |
| 6 | + "schedule:earlyMondays", |
| 7 | + ], |
| 8 | + "labels": ["C-Dependencies"], |
| 9 | + "prConcurrentLimit": 5, |
| 10 | + "prHourlyLimit": 5, |
| 11 | + "vulnerabilityAlerts": { |
| 12 | + "addLabels": ["P-Critical", "C-Security"], |
| 13 | + "assignees": ["@DanielVoogsgerd"] |
| 14 | + }, |
| 15 | + // "lockFileMaintenance": { "enabled": true }, |
| 16 | + "packageRules": [ |
| 17 | + { |
| 18 | + "matchUpdateTypes": ["minor"], |
| 19 | + "matchManagers": ["cargo"], |
| 20 | + "matchCurrentValue": "!/^v?0\\./", |
| 21 | + "groupName": "all non-major dependencies (exclude 0.x.y)", |
| 22 | + "groupSlug": "all-minor-patch-semver", |
| 23 | + "prPriority": 9, |
| 24 | + }, |
| 25 | + { |
| 26 | + "matchUpdateTypes": ["patch"], |
| 27 | + "matchManagers": ["cargo"], |
| 28 | + "matchCurrentValue": "!/^v?0\\.0\\./", |
| 29 | + "groupName": "all non-major dependencies (exclude 0.x.y)", |
| 30 | + "groupSlug": "all-minor-patch-semver", |
| 31 | + "prPriority": 9, |
| 32 | + }, |
| 33 | + { |
| 34 | + "matchManagers": ["github-actions"], |
| 35 | + "addLabels": ["A-CI", "A-CD"], |
| 36 | + } |
| 37 | + ] |
| 38 | +} |
0 commit comments