From 6476021619dc5482b653d928ff9c6d2c98a29b26 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 --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 546c99f9..567afa07 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,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" @@ -32,6 +35,9 @@ updates: directory: "/" schedule: interval: "weekly" + day: "wednesday" + time: "02:00" + timezone: "Asia/Shanghai" cooldown: default-days: 5 semver-major-days: 30 @@ -124,6 +130,9 @@ updates: directory: "/lightrag_webui" schedule: interval: "weekly" + day: "friday" + time: "02:00" + timezone: "Asia/Shanghai" cooldown: default-days: 5 semver-major-days: 30