From 949ad7732df57921f64fff65c028dfa646cc90fc Mon Sep 17 00:00:00 2001 From: Matthew Buske Date: Sat, 7 Jun 2025 02:53:08 +0000 Subject: [PATCH] feat: Configure Dependabot to target staging branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated Dependabot configuration to align with branching strategy: - Changed target-branch from main to staging for all ecosystems - Added labels to identify develop-related dependency updates - Added assignee for automatic assignment Note: Dependabot doesn't support custom branch name prefixes like 'develop/patch-'. It will still create branches with pattern 'dependabot//-' but now these PRs will target staging instead of main. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b3d31fd..6618a26 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,13 +10,33 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + target-branch: "staging" + # Unfortunately, Dependabot doesn't support custom prefixes like "develop/patch-" + # It uses fixed patterns like "dependabot/github_actions/package-version" + # However, we can use labels and assignees to help manage these PRs + labels: + - "dependencies" + - "github-actions" + - "develop" + assignees: + - "mattbuske" - package-ecosystem: pip directory: "/" schedule: interval: daily open-pull-requests-limit: 10 + target-branch: "staging" + labels: + - "dependencies" + - "python" + - "develop" + assignees: + - "mattbuske" #- package-ecosystem: gitsubmodule # directory: "/" # schedule: # interval: daily # open-pull-requests-limit: 10 +# target-branch: "staging" +# pull-request-branch-name: +# separator: "/"