From 934f17049c46b6c55b77ce95bad7cdd776bacbee Mon Sep 17 00:00:00 2001 From: Spencer Schrock Date: Thu, 9 Nov 2023 17:22:29 -0800 Subject: [PATCH] :seedling: 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 --- .github/dependabot.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9ae9ca191be..ee6850e409b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,10 +19,19 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" rebase-strategy: disabled commit-message: prefix: ":seedling:" + groups: + github-actions: + patterns: + - "*" + # These actions directly influence the build process and are excluded from grouped updates + exclude-patterns: + - "actions/setup-go" + - "arduino/setup-protoc" + - "goreleaser/goreleaser-action" - package-ecosystem: docker directory: "/" schedule: