|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": ["config:recommended"], |
4 | | - "enabledManagers": ["bun"], |
| 4 | + "enabledManagers": ["npm", "github-actions"], |
5 | 5 | "timezone": "America/Chicago", |
6 | 6 | "schedule": ["before 9am on monday"], |
7 | 7 | "minimumReleaseAge": "3 days", |
|
10 | 10 | "rangeStrategy": "bump", |
11 | 11 | "packageRules": [ |
12 | 12 | { |
13 | | - "description": "Automerge safe Bun dependency updates after CI passes.", |
14 | | - "matchManagers": ["bun"], |
| 13 | + "description": "Automerge safe template dependency updates after CI passes.", |
| 14 | + "matchManagers": ["npm"], |
15 | 15 | "matchFileNames": ["bun/cli/package.json", "bun/lib/package.json"], |
16 | 16 | "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
17 | 17 | "automerge": true, |
18 | 18 | "automergeType": "pr" |
19 | 19 | }, |
20 | 20 | { |
21 | 21 | "description": "Keep major updates open for manual review.", |
22 | | - "matchManagers": ["bun"], |
| 22 | + "matchManagers": ["npm"], |
23 | 23 | "matchFileNames": ["bun/cli/package.json", "bun/lib/package.json"], |
24 | 24 | "matchUpdateTypes": ["major"], |
25 | 25 | "automerge": false |
|
0 commit comments