From c3e371ae951a7465662e73e7a36a031bdaddb8d9 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Sat, 22 Aug 2026 20:03:18 -0700 Subject: [PATCH] chore: standardize renovate config and remove dependabot Aligns renovate.json with the config used by the majority of test-kitchen repos, adding :disableDependencyDashboard and schedule:automergeEarlyMondays. Also removes .github/dependabot.yml, which duplicated Renovate's bundler coverage and produced competing update PRs. Co-Authored-By: Claude Opus 5 (1M context) --- .github/dependabot.yml | 8 -------- renovate.json | 4 +++- 2 files changed, 3 insertions(+), 9 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 70628565..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -version: 2 -updates: - - package-ecosystem: bundler - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 diff --git a/renovate.json b/renovate.json index 5db72dd6..b65764b1 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:recommended" + "config:recommended", + ":disableDependencyDashboard", + "schedule:automergeEarlyMondays" ] }