From 196591bb188b4226f27a83e260d34d053d49b775 Mon Sep 17 00:00:00 2001 From: Clay Miller Date: Wed, 14 Jan 2026 15:28:38 -0500 Subject: [PATCH] chore: Configure Dependabot --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..92bd4d3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directories: + - "/" + groups: + # Open PRs for each major version and security update + # Open an aggregate PR for all minor and patch version updates + npm-minor-and-patch: + applies-to: version-updates + patterns: + - "*" + update-types: + - "minor" + - "patch" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directories: + - "/" + groups: + # Open an aggregate PR for all GitHub Actions updates + github-actions: + patterns: + - "*" + schedule: + interval: "weekly"