From 67b4ae754d7b01058764de67f35f3439c89c9bd1 Mon Sep 17 00:00:00 2001 From: Steven Rhodes Date: Mon, 9 Oct 2023 13:35:50 -0700 Subject: [PATCH] Change dependabot to weekly and group otel (#342) The dependabot PRs feel a bit too frequent. Otel changes in particular have a habit of spitting out 4-5 PRs at once that update a bunch of related dependencies to the same version. Weekly frequency and grouped otel should make things less noisy without reducing our rate of updating much. --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b444581e..720cd867 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,8 @@ updates: - package-ecosystem: "gomod" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "weekly" + groups: + otel: + patterns: + - "go.opentelemetry.io/*"