From 2fee3861f06da41366797179b426cefa0940d369 Mon Sep 17 00:00:00 2001 From: asepharyana <48643666+asepharyana@users.noreply.github.com> Date: Tue, 25 Aug 2026 18:08:51 +0700 Subject: [PATCH] feat: add dependabot config (npm auto-deps) --- .github/dependabot.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..739865d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + day: "monday" + time: "05:00" + timezone: "Asia/Makassar" + open-pull-requests-limit: 10 + assignees: + - "asepharyana" + commit-message: + prefix: "chore" + prefix-development: "chore" + include: "scope" + reviewers: + - "asepharyana" + labels: + - "dependencies" + groups: + production: + dependency-type: "production" + update-types: + - "minor" + - "patch" + development: + dependency-type: "development" + update-types: + - "minor" + - "patch"