From 1e7b198336aca8fc96e809a8afe13177aff0798b Mon Sep 17 00:00:00 2001 From: "Tung Bui (Leo)" <85242618+tungbq@users.noreply.github.com> Date: Sun, 2 Jul 2023 06:32:14 +0700 Subject: [PATCH] feat: add weekly dependabot (#3689) --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..91ac62b90 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + # github-actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + target-branch: "3.x" + # npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + target-branch: "3.x"