From 60117059316b96f2857a047f96352abd97894a4b Mon Sep 17 00:00:00 2001 From: Andrei Aaron Date: Mon, 11 Sep 2023 21:02:11 +0300 Subject: [PATCH] chore(dependabot): increase the limit of dependabot PRs (#1788) Given the default limit is 5 and some packages like AWS release daily, having a weekly schedule results in the same packages being flagged for update most of the time. Let's increase to 10 to make sure there are no issues in other libraries Signed-off-by: Andrei Aaron --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a2a66d09..633a17a9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,9 +7,11 @@ version: 2 updates: - package-ecosystem: "gomod" # See documentation for possible values directory: "/" # Location of package manifests + open-pull-requests-limit: 10 schedule: interval: "weekly" - package-ecosystem: "github-actions" # See documentation for possible values directory: "/" # Location of package manifests + open-pull-requests-limit: 10 schedule: interval: "weekly"