From 53d4a02f457ec30794cf36cb8a872c15b0dda067 Mon Sep 17 00:00:00 2001 From: Rein Krul Date: Mon, 15 Jun 2026 10:33:12 +0200 Subject: [PATCH] chore: run Dependabot weekly on Sunday night instead of daily Daily checks produce patch PRs that supersede the previous day's PR (patches fixing bugs introduced by earlier patches), creating churn for maintainers. Switch github-actions, gomod and docker ecosystems to a weekly schedule on Sunday 23:00 Europe/Amsterdam. Assisted by AI --- .github/dependabot.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 848221e4f4..40a182372c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,21 +5,30 @@ updates: # checks workflow files in /.github/workflows directory: "/" schedule: - interval: "daily" + interval: "weekly" + day: "sunday" + time: "23:00" + timezone: "Europe/Amsterdam" # Go - package-ecosystem: "gomod" # checks /go.mod directory: "/" schedule: - interval: "daily" + interval: "weekly" + day: "sunday" + time: "23:00" + timezone: "Europe/Amsterdam" # Docker - package-ecosystem: "docker" # checks /Dockerfile directory: "/" schedule: - interval: "daily" + interval: "weekly" + day: "sunday" + time: "23:00" + timezone: "Europe/Amsterdam" # Python (PRs disabled) - package-ecosystem: "pip" @@ -28,4 +37,4 @@ updates: schedule: interval: "weekly" # Allow up to 0 open pull requests for pip dependencies - open-pull-requests-limit: 0 \ No newline at end of file + open-pull-requests-limit: 0