Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
chore(dependabot): Instruct dependabot to create a single pr
Browse files Browse the repository at this point in the history
At the moment, every time that dependabot creates a pull request for
update a dependency, it creates a separate pull request to each
sub-package. As an example, to update webpack, it will create at least
seven pull requests, one for each package.

Checking this issue dependabot/dependabot-core#3399
it seems possible to configure only the root package.json and let
dependabot read the subsequent packages from yarn workspaces.
  • Loading branch information
lordrip authored and Delawen committed May 8, 2023
1 parent 4cdea17 commit 373a132
Showing 1 changed file with 3 additions and 53 deletions.
56 changes: 3 additions & 53 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,59 +6,9 @@ updates:
schedule:
interval: "daily"


# Extensions to watch
# create a new element per extension
- package-ecosystem: "npm"
directory: "/choice"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/http"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/load-balance"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/set-body"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/set-header"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/set-property"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/step-extension-ogcapi-features-action"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/transform"
schedule:
interval: "daily"
open-pull-requests-limit: 5

- package-ecosystem: "npm"
directory: "/try-catch-eip"
# Root yarn workspace
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5

0 comments on commit 373a132

Please sign in to comment.