Skip to content

Commit

Permalink
ci: increase PR limits for dependabot
Browse files Browse the repository at this point in the history
Dependabot PRs related to GitHub Action updates and Docker updates very
rarely conflict. Let's bump the PR limit to 5 for them. Go updates have
more probability to conflict but they don't always do either, let's bump
the limit to 3.

Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh committed May 18, 2023
1 parent 51e4ba7 commit 0239d6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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: 3
rebase-strategy: "disabled"
ignore:
# k8s dependencies will be updated manually all at once
Expand All @@ -15,12 +15,12 @@ updates:
directory: /
schedule:
interval: daily
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"

- package-ecosystem: docker
directory: /
schedule:
interval: daily
open-pull-requests-limit: 1
open-pull-requests-limit: 5
rebase-strategy: "disabled"

0 comments on commit 0239d6c

Please sign in to comment.