From 0239d6c50b0fdbe3148b0617abf1893614cbb9ab Mon Sep 17 00:00:00 2001 From: Robin Hahling Date: Thu, 18 May 2023 10:19:56 +0200 Subject: [PATCH] ci: increase PR limits for dependabot 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 --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 70d1fa01..c5413a35 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 @@ -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"