From 92e5d3b0a9f43f214b0b0d7e189ce2945d0c8eac Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 31 Aug 2026 14:49:53 +0000 Subject: [PATCH] chore(ci): slow both dependabot channels from weekly to monthly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both dependabot.yml update blocks (npm and github-actions) move schedule.interval from weekly to monthly, cutting noise roughly 4x while GitHub security-alert PRs remain unaffected (they are not driven by `schedule`). The `day: "monday"` line is removed from both blocks — verified against the GitHub docs source (github/docs, dependabot-options-reference.md): `day` is documented only as "the day to run for a weekly interval" and has no defined meaning for `monthly`. Groups, limits, labels, and commit-message config are untouched. Card relationship declared in the PR body, not here (branch is squash-merged). Co-Authored-By: Claude Code Claude-Session: https://claude.ai/code/session_015adLit3ZYASJiXwxKG78Wi --- .github/dependabot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8de9759bba..00ee193478 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,7 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "weekly" - day: "monday" + interval: "monthly" open-pull-requests-limit: 10 labels: - "dependencies" @@ -48,8 +47,7 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" - day: "monday" + interval: "monthly" labels: - "dependencies" - "github-actions"