From 83ef93a3254a51f0d64572794c8b0fcfdb2fdaef Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 9 May 2026 12:39:17 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20setup:=20add=20dependabot?= =?UTF-8?q?=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Agent-Logs-Url: https://github.com/warengonzaga/magic-commit/sessions/939393b3-c09b-499c-a445-e31fad4e70f2 Co-authored-by: warengonzaga <15052701+warengonzaga@users.noreply.github.com> --- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..54a7825 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +version: 2 +updates: + # npm dependencies + - package-ecosystem: "npm" + directory: "/" + target-branch: "dev" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 10 + commit-message: + prefix: "☕ chore" + labels: + - "security" + - "infra" + groups: + # Group minor/patch updates together to reduce PR noise + minor-and-patch: + update-types: + - "minor" + - "patch" + + # GitHub Actions versions + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "dev" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + commit-message: + prefix: "☕ chore" + labels: + - "security" + - "infra"