From 8f4f293a1295c986a113988bf8a4e7532db5768c Mon Sep 17 00:00:00 2001 From: nx-thaddeusaid Date: Sun, 24 May 2026 14:28:04 -0700 Subject: [PATCH 1/2] chore(dependabot): route updates to a 'dependabot' staging branch Add target-branch: "dependabot" to both update configs (npm + github-actions) so Dependabot opens PRs against a staging branch instead of main, allowing dependency bumps to be tested before merging. Co-Authored-By: Claude Opus 4.7 --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 85c26b2..5badd22 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,8 +4,11 @@ updates: directory: / schedule: interval: weekly + # Route updates to a staging branch so they can be tested before merging to main. + target-branch: "dependabot" - package-ecosystem: github-actions directory: / schedule: interval: weekly + target-branch: "dependabot" From d2e7af50a7154a1f37b18e316c607269fb5bbbf1 Mon Sep 17 00:00:00 2001 From: nx-thaddeusaid Date: Sun, 24 May 2026 14:33:13 -0700 Subject: [PATCH 2/2] chore(dependabot): target dependabot-reqs branch (avoids dependabot/* namespace) --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5badd22..8ebf66d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,10 +5,10 @@ updates: schedule: interval: weekly # Route updates to a staging branch so they can be tested before merging to main. - target-branch: "dependabot" + target-branch: "dependabot-reqs" - package-ecosystem: github-actions directory: / schedule: interval: weekly - target-branch: "dependabot" + target-branch: "dependabot-reqs"