From 3721e4a4c1cc743702dfbca3a128c9a1867bfa59 Mon Sep 17 00:00:00 2001 From: utkarsh patrikar Date: Mon, 18 May 2026 00:39:48 +0530 Subject: [PATCH] feat: add dependabot configuration for automated updates --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c4e3a7a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,32 @@ +version: 2 +updates: + # Maintain dependencies for the main npm project + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "javascript" + + # Maintain dependencies for GitHub Actions scripts + - package-ecosystem: "npm" + directory: "/.github/scripts" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "javascript" + - "github-actions" + + # Maintain dependencies for GitHub Actions workflows + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "github-actions"