Skip to content

Commit 47b0a6e

Browse files
Enhance dependabot configuration to include GitHub Actions and update scheduling for Helm and Docker. Added daily checks at 09:00 for all specified ecosystems. (#1258)
Enhance dependabot configuration to include GitHub Actions and update scheduling for Helm and Docker. Added daily checks at 09:00 for all specified ecosystems. Reviewed-by: Vladimir Hasko <[email protected]>
1 parent 10de715 commit 47b0a6e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
1+
---
12
version: 2
23
updates:
4+
35
- package-ecosystem: "helm"
4-
directory: "/kubernetes"
6+
directories:
7+
- "/"
8+
- "/helm"
59
schedule:
610
interval: "daily"
11+
time: "09:00"
712
commit-message:
813
prefix: "[helm] "
14+
915
- package-ecosystem: "docker"
10-
directory: "/docker"
16+
directories:
17+
- "/"
18+
- "/docker"
1119
schedule:
1220
interval: "daily"
21+
time: "09:00"
1322
commit-message:
1423
prefix: "[docker] "
1524

25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
schedule:
28+
interval: "daily"
29+
time: "09:00"
30+
groups:
31+
all-actions:
32+
patterns: [ "*" ]

0 commit comments

Comments
 (0)