|
| 1 | +{ |
| 2 | + "extends": ["config:recommended"], |
| 3 | + "baseBranches": ["main"], |
| 4 | + "timezone": "Asia/Tokyo", |
| 5 | + "schedule": ["after 5pm and before 10pm on Thursday"], |
| 6 | + "minimumReleaseAge": "7 days", |
| 7 | + "rangeStrategy": "pin", |
| 8 | + "packageRules": [ |
| 9 | + { |
| 10 | + "matchUpdateTypes": ["major", "minor"], |
| 11 | + "labels": ["TypeScript"], |
| 12 | + "matchPackageNames": ["typescript"], |
| 13 | + "groupName": "TypeScript" |
| 14 | + }, |
| 15 | + { |
| 16 | + "groupName": "ESLint related packages", |
| 17 | + "packageNames": ["eslint", "eslint-config-prettier"], |
| 18 | + "packagePatterns": ["^@typescript-eslint/", "^eslint-plugin"] |
| 19 | + }, |
| 20 | + { |
| 21 | + "groupName": "All minor and patch dependencies", |
| 22 | + "matchUpdateTypes": ["minor", "patch"], |
| 23 | + "labels": ["UPDATE-MINOR&PATCH"], |
| 24 | + "excludePackageNames": ["typescript", "eslint", "eslint-config-prettier"], |
| 25 | + "excludePackagePatterns": ["^@typescript-eslint/", "^eslint-plugin"] |
| 26 | + } |
| 27 | + ], |
| 28 | + "automerge": true, |
| 29 | + "lockFileMaintenance": { |
| 30 | + "enabled": true, |
| 31 | + "schedule": ["after 5pm and before 10pm on Thursday"] |
| 32 | + }, |
| 33 | + "ignoreDeps": ["chalk"] |
| 34 | +} |
0 commit comments