From 488ae0a2f2d9343ccc734771e98637932a532760 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Tue, 31 Mar 2026 13:51:57 -0600 Subject: [PATCH] :construction_worker: Use dependabot on cpp20 branch Problem: - CI updates from dependabot only target the default branch. The `cpp20` branch does not receive updates. Solution: - Add dependabot configuration for the `cpp20` branch as well. --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bae789c..9dcc8d5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,10 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" - - package-ecosystem: "gitsubmodule" + target-branch: "main" + + - package-ecosystem: "github-actions" directory: "/" # Location of package manifests schedule: interval: "daily" + target-branch: "cpp20"