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
This commit is contained in:
parent
6e2f125acb
commit
6476021619
1 changed files with 9 additions and 0 deletions
9
.github/dependabot.yml
vendored
9
.github/dependabot.yml
vendored
|
|
@ -16,6 +16,9 @@ updates:
|
||||||
- "*" # Group all Actions updates into a single larger pull request
|
- "*" # Group all Actions updates into a single larger pull request
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
|
day: monday
|
||||||
|
time: "02:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
labels:
|
labels:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "github-actions"
|
- "github-actions"
|
||||||
|
|
@ -32,6 +35,9 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
day: "wednesday"
|
||||||
|
time: "02:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
cooldown:
|
cooldown:
|
||||||
default-days: 5
|
default-days: 5
|
||||||
semver-major-days: 30
|
semver-major-days: 30
|
||||||
|
|
@ -124,6 +130,9 @@ updates:
|
||||||
directory: "/lightrag_webui"
|
directory: "/lightrag_webui"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
day: "friday"
|
||||||
|
time: "02:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
cooldown:
|
cooldown:
|
||||||
default-days: 5
|
default-days: 5
|
||||||
semver-major-days: 30
|
semver-major-days: 30
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue