Skip to content

Commit 934f170

Browse files
🌱 configure dependabot to group (most) GitHub actions weekly (#3655)
actions which influence the build/release process are excluded. dependabot will send individual updates for those. Signed-off-by: Spencer Schrock <[email protected]>
1 parent b3d1a5a commit 934f170

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,19 @@ updates:
1919
- package-ecosystem: "github-actions"
2020
directory: "/"
2121
schedule:
22-
interval: "daily"
22+
interval: "weekly"
2323
rebase-strategy: disabled
2424
commit-message:
2525
prefix: ":seedling:"
26+
groups:
27+
github-actions:
28+
patterns:
29+
- "*"
30+
# These actions directly influence the build process and are excluded from grouped updates
31+
exclude-patterns:
32+
- "actions/setup-go"
33+
- "arduino/setup-protoc"
34+
- "goreleaser/goreleaser-action"
2635
- package-ecosystem: docker
2736
directory: "/"
2837
schedule:

0 commit comments

Comments
 (0)