From 052a4f6823c362618a84ae01773fe05fff01e74f Mon Sep 17 00:00:00 2001 From: jojomatik Date: Thu, 24 Feb 2022 22:56:49 +0100 Subject: [PATCH] ci: fix `open-pull-requests-limit` of dependabot Increase dependabot's `open-pull-requests-limit` to `50`. The limit of `0` was blocking PRs instead of disabling the limit as intended. --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 89e1ef2e..764ebffb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ updates: schedule: interval: "daily" target-branch: "beta" - open-pull-requests-limit: 0 + open-pull-requests-limit: 50 allow: - dependency-type: "production" - package-ecosystem: "npm" @@ -13,7 +13,7 @@ updates: schedule: interval: "monthly" target-branch: "updates" - open-pull-requests-limit: 0 + open-pull-requests-limit: 50 allow: - dependency-type: "development" @@ -22,7 +22,7 @@ updates: schedule: interval: "daily" target-branch: "beta" - open-pull-requests-limit: 0 + open-pull-requests-limit: 50 allow: - dependency-type: "production" - package-ecosystem: "npm" @@ -30,6 +30,6 @@ updates: schedule: interval: "monthly" target-branch: "updates" - open-pull-requests-limit: 0 + open-pull-requests-limit: 50 allow: - dependency-type: "development"