From a972a34db6adb0b8acd97e164ba4a656fd1b727b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 00:33:07 +0000 Subject: [PATCH 1/2] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} From 2cf2f1be2e74ab94db18b853010ec29b0f47aa1c Mon Sep 17 00:00:00 2001 From: mfyuu <83203852+mfyuu@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:54:57 +0900 Subject: [PATCH 2/2] chore(renovate): configure automerge and schedule settings - set weekly schedule for Monday nights (Asia/Tokyo timezone) - enable automerge for minor and patch updates - group major updates for manual review - set minimum release age of 7 days for npm packages - add reviewer and labels configuration - disable dependency dashboard Co-Authored-By: Claude Opus 4.6 --- renovate.json | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 5db72dd..0793094 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,25 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] + "extends": ["config:recommended"], + "timezone": "Asia/Tokyo", + "description": "Schedule weekly on Monday nights", + "schedule": ["* 0-5 * * 1"], + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "automerge": true, + "platformAutomerge": true + }, + { + "matchUpdateTypes": ["major"], + "groupName": "major updates (manual review)" + }, + { + "matchDatasources": ["npm"], + "minimumReleaseAge": "7 days" + } + ], + "reviewers": ["mfyuu"], + "labels": ["dependencies", "renovate"], + "dependencyDashboard": false }