From 33f80cd70c55dfbd4c0f4bd624fe19cf87a468f7 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Thu, 19 Sep 2024 18:11:06 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20ci:=20Configure=20Dependabot=20f?= =?UTF-8?q?or=20Security=20Updates=20(#4134)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dependabot.yml | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 0000000000..ffba9ed264 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,41 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + versioning-strategy: auto + allow: + - dependency-type: "direct" + security-updates-only: true + + - package-ecosystem: "npm" + directory: "/api" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + versioning-strategy: auto + allow: + - dependency-type: "direct" + security-updates-only: true + + - package-ecosystem: "npm" + directory: "/client" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + versioning-strategy: auto + allow: + - dependency-type: "direct" + security-updates-only: true + + - package-ecosystem: "npm" + directory: "/packages/data-provider" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + versioning-strategy: auto + allow: + - dependency-type: "direct" + security-updates-only: true \ No newline at end of file