From 6f182b02816f763c5d90aba076fc788770647395 Mon Sep 17 00:00:00 2001 From: Petr Jasek Date: Thu, 14 Nov 2024 15:48:13 +0100 Subject: [PATCH] enable dependabot on next --- .github/dependabot.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fb6aa8a..1f706ea 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,11 +5,24 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/client" # Location of package manifests + # default + - package-ecosystem: "npm" + directory: "/client" schedule: interval: "daily" - - package-ecosystem: "pip" # See documentation for possible values - directory: "/server" # Location of package manifests + - package-ecosystem: "pip" + directory: "/server" + schedule: + interval: "daily" + + # next + - package-ecosystem: "npm" + target-branch: "next" + directory: "/client" + schedule: + interval: "daily" + - package-ecosystem: "pip" + target-branch: "next" + directory: "/server" schedule: interval: "daily"