From 531067c631c16eeaed6da5d158d8479fa3ff0cd0 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Mon, 28 Aug 2023 23:32:17 +0530 Subject: [PATCH] Enable grouping of patch updates in Dependabot (#30208) This feature was released recently. This could potentially cut down on the CI hours spent on merging dependabot PRs. More info here: https://github.blog/2023-08-24-a-faster-way-to-manage-version-updates-with-dependabot/ https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-version-updates-with-comment-commands --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b88dbb0a9c7..58c315da6f5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,10 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + groups: + patch-updates: + update-types: + - patch allow: - dependency-type: direct - dependency-type: indirect