From 4678a69a9c1cd6d06923fa9ec06987bd5b5db1d5 Mon Sep 17 00:00:00 2001 From: verma nakul Date: Mon, 16 Dec 2024 15:07:32 +0530 Subject: [PATCH] feat: Updating Group dependency for GitHub Actions and Cargo (#1623) ### What does this PR do? Updating the `.github/dependabot.yml` file to group dependency updates for: - GitHub Actions: All updates will now be grouped under a single PR using the `all-actions` group. - Cargo: Updates will be batched into a single PR using the `all-cargo` group. ### Which issue does this PR Fixes? - Fixes #1622 --------- Co-authored-by: Lucas Co-authored-by: Frank Elsinga --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ce9e973a2..8212356a9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,9 +5,27 @@ updates: directory: "/" schedule: interval: "daily" + groups: + all-actions-version-updates: + applies-to: version-updates + patterns: + - "*" + all-actions-security-updates: + applies-to: security-updates + patterns: + - "*" - package-ecosystem: cargo directory: "/" schedule: interval: daily time: "02:00" open-pull-requests-limit: 10 + groups: + all-cargo-version-updates: + applies-to: version-updates + patterns: + - "*" + all-cargo-security-updates: + applies-to: security-updates + patterns: + - "*"