From 3e2d04ca1326013781dfe92b85055f650a29ed63 Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Wed, 18 Mar 2026 23:03:10 -0600 Subject: [PATCH 1/2] Change dependabot and renovate schedules from daily to weekly on Wednesdays Reduces noise from dependency update PRs by limiting both dependabot and renovate to run once per week on Wednesdays instead of daily. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/dependabot.yml | 6 ++++-- .github/renovate.json | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b283a254cde..69b2ae5cfd3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,8 @@ updates: - package-ecosystem: pip directory: "/" schedule: - interval: daily + interval: weekly + day: wednesday time: "08:00" open-pull-requests-limit: 10 target-branch: dev @@ -17,7 +18,8 @@ updates: - package-ecosystem: npm directory: "/components" schedule: - interval: daily + interval: weekly + day: wednesday time: "08:00" open-pull-requests-limit: 10 target-branch: dev diff --git a/.github/renovate.json b/.github/renovate.json index ad093496aaf..ae8ee0179c4 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,7 +1,9 @@ { "extends": [ - "config:recommended" + "config:recommended", + "schedule:weekly" ], + "schedule": ["* * * * 3"], "dependencyDashboard": true, "dependencyDashboardApproval": false, "baseBranchPatterns": ["dev"], From 0957b69f0ee4925bc769b1190b8d94ac9131d4e5 Mon Sep 17 00:00:00 2001 From: Cody Maffucci <46459665+Maffooch@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:33:38 -0600 Subject: [PATCH 2/2] Pin Hugo version and prevent automated update PRs Remove Renovate annotations from Hugo version lines in workflow files and add gohugoio/hugo to ignoreDeps in renovate.json to prevent Dependabot/Renovate from opening PRs to bump the Hugo version. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/renovate.json | 2 +- .github/workflows/gh-pages.yml | 2 +- .github/workflows/validate_docs_build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index ae8ee0179c4..632e9c41aaf 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -18,7 +18,7 @@ "dojo/components/yarn.lock", "dojo/components/package.json" ], - "ignoreDeps": [], + "ignoreDeps": ["gohugoio/hugo"], "packageRules": [{ "matchPackageNames": ["*"], "commitMessageExtra": "from {{currentVersion}} to {{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}", diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 2984c0ba370..1eabd40badc 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0 with: - hugo-version: '0.153.4' # renovate: datasource=github-releases depName=gohugoio/hugo + hugo-version: '0.153.4' extended: true - name: Setup Node diff --git a/.github/workflows/validate_docs_build.yml b/.github/workflows/validate_docs_build.yml index 2583be524f6..c18eefc776c 100644 --- a/.github/workflows/validate_docs_build.yml +++ b/.github/workflows/validate_docs_build.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0 with: - hugo-version: '0.153.4' # renovate: datasource=github-releases depName=gohugoio/hugo + hugo-version: '0.153.4' extended: true - name: Setup Node