From e838f5c3fdf49f14850137b476f227d522cd951e Mon Sep 17 00:00:00 2001 From: leesam Date: Mon, 9 Mar 2026 14:26:51 +0900 Subject: [PATCH 1/2] chore: enable scheduled cron for Renovate workflow Runs every Monday at 2am UTC in addition to manual dispatch. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/renovate.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index ef72e2e..989efdd 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -2,6 +2,8 @@ name: Renovate on: workflow_dispatch: + schedule: + - cron: '0 2 * * 1' # Every Monday at 2am UTC permissions: contents: write From 56528847d00420d4a327b582d83c0d0174db0026 Mon Sep 17 00:00:00 2001 From: leesam Date: Mon, 9 Mar 2026 14:32:16 +0900 Subject: [PATCH 2/2] chore: set Renovate schedule to before 9am on Monday Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index e238b1d..b000ac6 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], + "schedule": ["before 9am on Monday"], "enabledManagers": ["mise", "custom.regex"], "customManagers": [ { @@ -39,13 +40,11 @@ "packageRules": [ { "matchManagers": ["custom.regex"], - "groupName": "Swift dependencies", - "schedule": ["at any time"] + "groupName": "Swift dependencies" }, { "matchManagers": ["mise"], - "groupName": "Dev tools", - "schedule": ["at any time"] + "groupName": "Dev tools" }, { "matchUpdateTypes": ["patch"],