From e408ffa0f1244645fce931f3a7c83540b7791fcb Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 12 Sep 2026 03:36:18 +0000 Subject: [PATCH] chore: limit Claude Code updates to once a week The Claude Code releases tracked by the pinned VS Code extension are tagged several times a day, so the pin produced a pull request on most days. Schedule the update for Thursday, which none of the repository scheduled workflows use, so one pull request covers the week. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01FLfgspV8oxkPKe3zUPu915 --- renovate.jsonc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/renovate.jsonc b/renovate.jsonc index d854c0c..f6b7d05 100644 --- a/renovate.jsonc +++ b/renovate.jsonc @@ -63,5 +63,16 @@ ], "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}" } + ], + "packageRules": [ + { + "description": "Limit Claude Code updates to one pull request a week, since upstream tags releases several times a day.", + "matchPackageNames": [ + "anthropics/claude-code" + ], + "schedule": [ + "* * * * 4" + ] + } ] } \ No newline at end of file