From c5b7b8a18ac8ea11c2a9b0b4f1e409e9446fc458 Mon Sep 17 00:00:00 2001 From: Adithya Krishna Date: Mon, 21 Aug 2023 18:54:59 +0530 Subject: [PATCH] feat: add dependabot config Signed-off-by: Adithya Krishna --- .github/dependabot.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..3b31db9a9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,37 @@ +name: "Dependabot Updates" +version: 2 + +on: + push: + branches: [ "feat/refresh" ] + pull_request: + branches: [ "feat/refresh" ] + workflow_dispatch: + +updates: + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: "weekly" + target-branch: "feat/refresh" + labels: + - "ci dependencies" + - "ci" + + - package-ecosystem: "npm" + directory: "/apps/marketing" + schedule: + interval: "weekly" + target-branch: "feat/refresh" + labels: + - "npm dependencies" + - "frontend" + + - package-ecosystem: "npm" + directory: "/apps/web" + schedule: + interval: "weekly" + target-branch: "feat/refresh" + labels: + - "npm dependencies" + - "frontend"