From f6c20faa162b7eeaa540b5444628634e38b11c4d Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 2 Dec 2025 19:21:44 +0800 Subject: [PATCH] Configure Dependabot schedule with specific times and timezone - Set Monday 2AM for GitHub Actions - Set Wednesday 2AM for Python deps - Set Friday 2AM for web UI deps - Use Asia/Shanghai timezone - Spread updates across weekdays (cherry picked from commit 6476021619dc5482b653d928ff9c6d2c98a29b26) --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff191bf1..f4b49bd5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,9 @@ updates: - "*" # Group all Actions updates into a single larger pull request schedule: interval: weekly + day: monday + time: "02:00" + timezone: "Asia/Shanghai" labels: - "dependencies" - "github-actions" @@ -23,6 +26,9 @@ updates: directory: "/" schedule: interval: "weekly" + day: "wednesday" + time: "02:00" + timezone: "Asia/Shanghai" cooldown: default-days: 5 semver-major-days: 30 @@ -108,6 +114,9 @@ updates: directory: "/lightrag_webui" schedule: interval: "weekly" + day: "friday" + time: "02:00" + timezone: "Asia/Shanghai" cooldown: default-days: 5 semver-major-days: 30