|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + "helpers:pinGitHubActionDigests" |
| 6 | + ], |
| 7 | + "baseBranchPatterns": [ |
| 8 | + "main" |
| 9 | + ], |
| 10 | + "enabledManagers": [ |
| 11 | + "npm", |
| 12 | + "github-actions" |
| 13 | + ], |
| 14 | + "prHourlyLimit": 0, |
| 15 | + "prConcurrentLimit": 0, |
| 16 | + "semanticCommits": "enabled", |
| 17 | + "semanticCommitType": "chore", |
| 18 | + "semanticCommitScope": "deps", |
| 19 | + "commitMessageAction": "Update", |
| 20 | + "separateMajorMinor": true, |
| 21 | + "separateMinorPatch": true, |
| 22 | + "rangeStrategy": "pin", |
| 23 | + "rebaseWhen": "conflicted", |
| 24 | + "github-actions": { |
| 25 | + "managerFilePatterns": [ |
| 26 | + "/^\\.github/workflows/.+\\.yml$/" |
| 27 | + ] |
| 28 | + }, |
| 29 | + "packageRules": [ |
| 30 | + { |
| 31 | + "matchCategories": [ |
| 32 | + "npm" |
| 33 | + ], |
| 34 | + "enabled": true, |
| 35 | + "minimumReleaseAge": "5 days" |
| 36 | + }, |
| 37 | + { |
| 38 | + "matchCategories": [ |
| 39 | + "github-actions" |
| 40 | + ], |
| 41 | + "enabled": true, |
| 42 | + "minimumReleaseAge": "1 days" |
| 43 | + }, |
| 44 | + { |
| 45 | + "matchUpdateTypes": [ |
| 46 | + "patch" |
| 47 | + ], |
| 48 | + "commitMessageAction": "(Patch) Update" |
| 49 | + }, |
| 50 | + { |
| 51 | + "matchUpdateTypes": [ |
| 52 | + "minor" |
| 53 | + ], |
| 54 | + "commitMessageAction": "(Minor) Update" |
| 55 | + }, |
| 56 | + { |
| 57 | + "matchUpdateTypes": [ |
| 58 | + "major" |
| 59 | + ], |
| 60 | + "commitMessageAction": "(Major) Update" |
| 61 | + } |
| 62 | + ], |
| 63 | + "vulnerabilityAlerts": { |
| 64 | + "dependencyDashboardApproval": true |
| 65 | + }, |
| 66 | + "timezone": "America/Chicago", |
| 67 | + "schedule": [ |
| 68 | + "at any time" |
| 69 | + ], |
| 70 | + "dependencyDashboard": true, |
| 71 | + "dependencyDashboardTitle": "Dependency Updates", |
| 72 | + "dependencyDashboardApproval": true, |
| 73 | + "dependencyDashboardAutoclose": true |
| 74 | +} |
0 commit comments