From 1b2a11a8b6db0fea0ff5263c2a7407f6ac252a9f Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 5 Dec 2023 13:43:37 +0100 Subject: [PATCH] feat(github): dependabot target branch to dev Signed-off-by: rjshrjndrn --- .github/dependabot.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..263245988 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + target-branch: "dev" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + target-branch: "dev"