From 55a4803a4a5dd92efc1d0a5ba6b8fa3c11931ffd Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 8 Mar 2022 14:21:46 +0000 Subject: [PATCH] .github: Avoid excessive rebase & rebuilds from dependabot Reduce the number of open pull requests dependabot will create to avoid excessive rebase and rebuilds of PRs. This avoids a situation with a 2nd PR being rebased after a 1st is merged resulting in a wasteful rebuild. Signed-off-by: Rob Bradford --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fb577c3cc..0b0383094 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ updates: directory: "/" schedule: interval: daily - open-pull-requests-limit: 3 + open-pull-requests-limit: 1 allow: - dependency-type: direct - dependency-type: indirect @@ -12,7 +12,7 @@ updates: directory: "/fuzz" schedule: interval: daily - open-pull-requests-limit: 3 + open-pull-requests-limit: 1 allow: - dependency-type: direct - dependency-type: indirect