From dda6fc5dd74db7e00321ea21d0b06fe1b2da7f83 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 17 Feb 2023 10:54:32 +1300 Subject: [PATCH] feat(ci): only send (and refresh) dependabot PRs weekly (#3477) Despite `rebase-strategy: "disabled"`, dependabot will refresh (i.e. rebase) PRs on the specified schedule interval. With the addition of `Cargo.lock` to our repository, dependabot is opening a lot more PRs which consumes unnecessary CI resources. We change the interval to "weekly" to reduce the noise and resource consumption. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f977f2ae..0bfe5069 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: "cargo" directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 9999 commit-message: prefix: "deps"