From 53a8e2aa57b857d90580c420887772050e7b923f Mon Sep 17 00:00:00 2001 From: Krishan <33421343+kfiven@users.noreply.github.com> Date: Thu, 31 Mar 2022 15:42:37 +0530 Subject: [PATCH] Increase Pull request limit for dependabot npm updates (#454) * Increase PR limit for dependabot * Make the invisible visible --- .github/dependabot.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f49eabc..3683b10 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,28 +1,30 @@ # Docs: version: 2 - updates: - - package-ecosystem: github-actions + - package-ecosystem: npm directory: / schedule: interval: weekly day: "tuesday" time: "01:00" timezone: "Asia/Kolkata" + open-pull-requests-limit: 15 - - package-ecosystem: docker + - package-ecosystem: github-actions directory: / schedule: interval: weekly day: "tuesday" time: "01:00" timezone: "Asia/Kolkata" + open-pull-requests-limit: 5 - - package-ecosystem: npm + - package-ecosystem: docker directory: / schedule: interval: weekly day: "tuesday" time: "01:00" timezone: "Asia/Kolkata" + open-pull-requests-limit: 5 -- 2.34.1