From 2fa314b6b63be8cd264c7787852886e9b6c827aa Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Tue, 6 Aug 2024 09:14:55 +0200 Subject: [PATCH] Avoid duplicate dependabot bumps (#45590) * Avoid duplicate dependabot bumps Example of a duplicate bump: - https://github.com/spack/spack/pull/45124 - https://github.com/spack/spack/pull/45125 * Deduplicate "pip" ecosystem --- .github/dependabot.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b19c9381ecf..136f798711c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,14 +5,10 @@ updates: directory: "/" schedule: interval: "daily" - # Requirements to build documentation - - package-ecosystem: "pip" - directory: "/lib/spack/docs" - schedule: - interval: "daily" - # Requirements to run style checks + # Requirements to run style checks and build documentation - package-ecosystem: "pip" directories: - - "/.github/workflows/requirements/*" + - "/.github/workflows/requirements/style/*" + - "/lib/spack/docs" schedule: interval: "daily"