Skip to content

Commit

Permalink
dependabot: set pull-request limit to 5
Browse files Browse the repository at this point in the history
Having the pull request limit set to 1 made dependabot to stay behind
on some dependencies updates. Hopefully, increasing the number of
parallel pull-requests that can be open will decrease the time a
dependency is not updated.

Signed-off-by: André Martins <andre@cilium.io>
  • Loading branch information
aanm committed Nov 4, 2021
1 parent a6199b4 commit 352d11c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ updates:
directory: /
schedule:
interval: daily
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"
ignore:
# using a cilium-specific fork
Expand All @@ -20,7 +20,7 @@ updates:
directory: /
schedule:
interval: daily
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"
labels:
- kind/enhancement
Expand All @@ -31,7 +31,7 @@ updates:
schedule:
interval: daily
target-branch: "v1.10"
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"
labels:
- kind/enhancement
Expand All @@ -42,7 +42,7 @@ updates:
schedule:
interval: daily
target-branch: "v1.9"
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"
labels:
- kind/enhancement
Expand All @@ -53,7 +53,7 @@ updates:
schedule:
interval: daily
target-branch: "v1.8"
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"
labels:
- kind/enhancement
Expand Down

0 comments on commit 352d11c

Please sign in to comment.