|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "additionalBranchPrefix": "{{manager}}/", |
| 4 | + "automerge": false, |
| 5 | + "commitBodyTable": true, |
| 6 | + "commitMessageAction": "Bump", |
| 7 | + "dependencyDashboard": false, |
| 8 | + "extends": [ |
| 9 | + "config:best-practices", |
| 10 | + "customManagers:dockerfileVersions", |
| 11 | + "customManagers:githubActionsVersions", |
| 12 | + ":automergeRequireAllStatusChecks", |
| 13 | + ":disableRateLimiting", |
| 14 | + ":enableVulnerabilityAlerts", |
| 15 | + ":gitSignOff", |
| 16 | + ":ignoreUnstable" |
| 17 | + ], |
| 18 | + "labels": ["dependencies", "infra"], |
| 19 | + "packageRules": [ |
| 20 | + { |
| 21 | + "matchManagers": ["dockerfile"], |
| 22 | + "addLabels": ["docker"] |
| 23 | + }, |
| 24 | + { |
| 25 | + "matchManagers": ["github-actions"], |
| 26 | + "addLabels": ["github_actions"] |
| 27 | + }, |
| 28 | + { |
| 29 | + "matchManagers": ["nuget"], |
| 30 | + "addLabels": [".NET"] |
| 31 | + }, |
| 32 | + { |
| 33 | + "matchManagers": ["pypi"], |
| 34 | + "addLabels": ["python"] |
| 35 | + }, |
| 36 | + { |
| 37 | + "description": ["Skip pinned NuGet package versions"], |
| 38 | + "matchManagers": ["nuget"], |
| 39 | + "matchCurrentValue": "^\\[[^,]+,\\)$", |
| 40 | + "enabled": false |
| 41 | + }, |
| 42 | + { |
| 43 | + "extends": ["monorepo:dotnet"], |
| 44 | + "description": ["Disable major version updates for .NET"], |
| 45 | + "matchUpdateTypes": ["major"], |
| 46 | + "enabled": false |
| 47 | + }, |
| 48 | + { |
| 49 | + "matchDepNames": ["xunit"], |
| 50 | + "description": ["Disable major version updates for xunit"], |
| 51 | + "matchUpdateTypes": ["major"], |
| 52 | + "enabled": false |
| 53 | + } |
| 54 | + ], |
| 55 | + "schedule": ["* 8-17 * * 3"], |
| 56 | + "timezone": "Etc/UTC", |
| 57 | + "vulnerabilityAlerts": { |
| 58 | + "addLabels": ["security"] |
| 59 | + } |
| 60 | +} |
0 commit comments