From 67d4d21b48e0448632e144b9a15a813f955bbeac Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 3 Oct 2024 09:08:51 -0600 Subject: [PATCH] Relax dependabot to weekly (#556) * ci: relax dependabot to weekly * ci: group minor and patch pip updates --- .github/dependabot.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 773c575..18587fd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,18 +3,33 @@ updates: - package-ecosystem: github-actions directory: "/" schedule: - interval: daily + interval: weekly - package-ecosystem: pip directory: "/.github/workflows" schedule: - interval: daily + interval: weekly + groups: + minor-and-patch: + update-types: + - minor + - patch - package-ecosystem: pip directory: "/docs" schedule: - interval: daily + interval: weekly + groups: + minor-and-patch: + update-types: + - minor + - patch - package-ecosystem: pip directory: "/" schedule: - interval: daily + interval: weekly allow: - dependency-type: "all" + groups: + minor-and-patch: + update-types: + - minor + - patch