From 447f7d05bee06217e2ed69a1f286e4f535d575d6 Mon Sep 17 00:00:00 2001 From: Normann Date: Sun, 23 Mar 2025 22:48:02 +0100 Subject: [PATCH] Update dependabot.yml to also include the feature branch --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9d866e3..5587327 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,16 @@ version: 2 updates: + # Update dependencies on the main branch - package-ecosystem: "pip" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly" + target-branch: "main" # Target the main branch + + # Update dependencies on the feature/config-nested branch + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + target-branch: "feature/config-nested" # Target the specific feature branch