diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2024-08-06 09:14:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 07:14:55 +0000 |
commit | 2fa314b6b63be8cd264c7787852886e9b6c827aa (patch) | |
tree | 74e6840e3fe76486f95a363e2b03534fe6f0cafd /.github/dependabot.yml | |
parent | 7780059c644176540a69369a88436bf4ca973116 (diff) | |
download | spack-2fa314b6b63be8cd264c7787852886e9b6c827aa.tar.gz spack-2fa314b6b63be8cd264c7787852886e9b6c827aa.tar.bz2 spack-2fa314b6b63be8cd264c7787852886e9b6c827aa.tar.xz spack-2fa314b6b63be8cd264c7787852886e9b6c827aa.zip |
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
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b19c9381ec..136f798711 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" |