diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..3bc49c5 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,37 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "dependencyDashboard": false, + "schedule": "before 9am on the first day of the month", + "timezone": "Asia/Tokyo", + "prHourlyLimit": 0, + "rangeStrategy": "bump", + "rebaseWhen": "conflicted", + "enabledManagers": [ + "github-actions", + "npm", + "asdf", + ], + "minimumReleaseAge": "7 days", + "assignees": [ + "0maru" + ], + // メジャーバージョンのアップデートは無効にする + "major": { + "enabled": false + }, + "packageRules": [ + { + "matchUpdateTypes": [ + "patch", + "minor" + ], + "excludeDepNames": [ + "typescript" + ], + "groupName": "all minor and patch dependencies" + }, + ], +}