From ea27a0829887b9a3844b509a91a9bba6b6e00173 Mon Sep 17 00:00:00 2001 From: "L. Yeung" Date: Wed, 28 Sep 2022 13:42:41 +0800 Subject: [PATCH] chore: add `target-branch` in dependabot configuration --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f70ee754..30f1ab73 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,17 +4,20 @@ updates: # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" directory: "/" + target-branch: "main" schedule: interval: "daily" # Maintain dependencies for npm - package-ecosystem: "npm" directory: "/" + target-branch: "main" schedule: interval: "daily" # Maintain dependencies for Go modules - package-ecosystem: "gomod" directory: "/" + target-branch: "main" schedule: interval: "daily"