Skip to content

Commit f5e0fa0

Browse files
authored
fix: use cron schedule to run on weekends (#4455)
chore: use cron schedule to run on weekends
1 parent 48e898b commit f5e0fa0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
55
schedule:
6-
interval: "daily"
6+
interval: "cron"
7+
cronjob: "0 0 * * *"
78
groups:
89
action-minor:
910
update-types:
@@ -14,7 +15,8 @@ updates:
1415
- "/"
1516
- "pkg"
1617
schedule:
17-
interval: "daily"
18+
interval: "cron"
19+
cronjob: "0 0 * * *"
1820
groups:
1921
go-minor:
2022
update-types:
@@ -23,7 +25,8 @@ updates:
2325
- package-ecosystem: "npm"
2426
directory: "/"
2527
schedule:
26-
interval: "daily"
28+
interval: "cron"
29+
cronjob: "0 0 * * *"
2730
groups:
2831
npm-minor:
2932
update-types:
@@ -32,7 +35,8 @@ updates:
3235
- package-ecosystem: "docker"
3336
directory: "pkg/config/templates"
3437
schedule:
35-
interval: "daily"
38+
interval: "cron"
39+
cronjob: "0 0 * * *"
3640
commit-message:
3741
prefix: "fix(docker): "
3842
groups:

0 commit comments

Comments
 (0)