From 2e31684374feb458feada24dbccb39e932b5e9c3 Mon Sep 17 00:00:00 2001 From: Maxim Martynov Date: Fri, 23 Aug 2024 17:57:26 +0300 Subject: [PATCH] CI: group Dependabot changes to one PR (#1719) --- .github/dependabot.yml | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b1cf7f5185..422f460502 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,14 +1,29 @@ version: 2 updates: - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: github-actions + directory: / schedule: - interval: "weekly" - - package-ecosystem: "pip" - directory: "/" + interval: weekly + # https://til.simonwillison.net/github/dependabot-python-setup + groups: + github-actions: + patterns: + - "*" + + - package-ecosystem: pip + directory: / schedule: - interval: "weekly" - - package-ecosystem: "devcontainers" - directory: "/" + interval: weekly + groups: + github-actions: + patterns: + - "*" + + - package-ecosystem: devcontainers + directory: / schedule: interval: weekly + groups: + github-actions: + patterns: + - "*"