From ee586d45ad73633cdc02d08322a9445b2c1da917 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Tue, 12 Nov 2024 16:38:16 -0800 Subject: [PATCH] Clean up dependabot config, add github-action group (#158408) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Delete bundler and docker, these directories no longer exist and we have no Docker or Gemfiles any more. 2. Update outdated reviewer list which was blocking any reviewers from being added. https://github.com/flutter/flutter/pull/157473#issuecomment-2433542624 3. Change github action update from daily to weekly 4. Add a `group` so all github action dependencies are updated in the same PR, instead of one-per-dependency. The PR will look like: __________ Screenshot 2024-11-08 at 11 08 52 AM __________ See also https://github.com/flutter/packages/pull/8044 --- .github/dependabot.yml | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ee0695bb95..d9e9317d90 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,38 +3,16 @@ version: 2 updates: - - package-ecosystem: "bundler" - directory: "/dev/ci/mac" - schedule: - interval: "weekly" - reviewers: - - "christopherfujino" - - "jmagman" - - "keyonghan" - labels: - - "team" - - "team-infra" - - "autosubmit" - - package-ecosystem: "docker" - directory: "/dev/ci/docker_linux" - schedule: - interval: "weekly" - reviewers: - - "christopherfujino" - - "jmagman" - - "keyonghan" - labels: - - "team" - - "team-infra" - - "autosubmit" - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" + groups: + all-github-actions: + patterns: [ "*" ] reviewers: - "christopherfujino" - "jmagman" - - "keyonghan" labels: - "team" - "team-infra"