From 036d1bd67621d46a481ac24924d447a385fb23b5 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Fri, 8 Nov 2024 11:51:22 -0800 Subject: [PATCH] Group dependabot github-action update PRs, delete dead docker updates (#8044) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dependabot now supports [grouping dependencies](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups) into one PR instead of one per dependency. Group github-action updates into one PR. Make github-actions update weekly instead of daily. Remove docker since it was removed in #4822 This means a PR like https://github.com/flutter/packages/pull/7813 will instead be grouped into one. Here's an example of what that will look like: https://github.com/kubernetes-sigs/cluster-api/pull/11347 __________ Screenshot 2024-11-08 at 11 08 52 AM __________ https://github.com/kubernetes-sigs/cluster-api/blob/e13abeaed2bd3d7b04abd9c9823e2f4185fa6599/.github/dependabot.yaml#L10-L12 I also updated the reviewers to stop the "One or more of the users or teams you specified is not a collaborator" [error](https://github.com/flutter/packages/pull/7813#issuecomment-2399244249). Part of https://github.com/flutter/flutter/issues/148098 --- .github/dependabot.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1f31d7198f59..6e571bc14b06 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,23 +3,15 @@ version: 2 updates: - - package-ecosystem: "docker" - directory: "/.ci" - schedule: - interval: "weekly" - reviewers: - - "stuartmorgan" - - "ditman" - labels: - - "autosubmit" - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" + groups: + all-github-actions: + patterns: [ "*" ] reviewers: - - "keyonghan" - - "yusuf-goog" - - "ricardoamador" + - "stuartmorgan" labels: - "team" - "team: infra"