From 34f6a037fc9143164b623e8e9edb016468a656f2 Mon Sep 17 00:00:00 2001 From: radiolabme Date: Sat, 4 Apr 2026 15:57:19 -0700 Subject: [PATCH] chore(ci): add Dependabot configuration Weekly npm updates (Wednesdays) with minor/patch grouped into a single PR. GitHub Actions checked monthly. Major version bumps excluded to avoid surprise breaking changes. --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2a46088 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,25 @@ +version: 2 + +updates: + # npm dependencies + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + day: "wednesday" + groups: + # Batch all patch and minor updates into one PR per week + patch-and-minor: + update-types: + - "minor" + - "patch" + # Major version bumps get individual PRs so they can be reviewed carefully + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly"