Skip to content

Commit

Permalink
ci: fix open-pull-requests-limit of dependabot
Browse files Browse the repository at this point in the history
Increase dependabot's `open-pull-requests-limit` to `50`. The limit of `0` was blocking PRs instead of disabling the limit as intended.
  • Loading branch information
jojomatik committed Feb 24, 2022
1 parent fa35573 commit 052a4f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ updates:
schedule:
interval: "daily"
target-branch: "beta"
open-pull-requests-limit: 0
open-pull-requests-limit: 50
allow:
- dependency-type: "production"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
target-branch: "updates"
open-pull-requests-limit: 0
open-pull-requests-limit: 50
allow:
- dependency-type: "development"

Expand All @@ -22,14 +22,14 @@ updates:
schedule:
interval: "daily"
target-branch: "beta"
open-pull-requests-limit: 0
open-pull-requests-limit: 50
allow:
- dependency-type: "production"
- package-ecosystem: "npm"
directory: "/backend"
schedule:
interval: "monthly"
target-branch: "updates"
open-pull-requests-limit: 0
open-pull-requests-limit: 50
allow:
- dependency-type: "development"

0 comments on commit 052a4f6

Please sign in to comment.