From 045a8e9ee11e07204da34ebe3ec4aef281e6c16a Mon Sep 17 00:00:00 2001 From: Sean Casey <4674433+CaseyLabs@users.noreply.github.com> Date: Wed, 8 Apr 2026 14:16:35 -0700 Subject: [PATCH 1/2] Add GitHub Dependabot scanning (runs once a month) --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0d57fc2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "monthly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "monthly" -- 2.34.1 From 960d4a09105c118fd057b9607f11e6a9ec7c5682 Mon Sep 17 00:00:00 2001 From: Razvan Dimescu Date: Fri, 10 Apr 2026 07:27:34 +0300 Subject: [PATCH 2/2] chore: group dependabot updates and use conventional commit prefix Bundle all minor/patch bumps per ecosystem into a single PR to keep noise manageable (~3 PRs/month instead of 10+). Major bumps still get individual PRs since they may break APIs. Commit messages now use the `chore(deps)` conventional-commit prefix to match the repo's existing style. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0d57fc2..4e5bd88 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,13 +4,34 @@ updates: directory: "/" schedule: interval: "monthly" + commit-message: + prefix: "chore(deps)" + include: "scope" + groups: + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" + commit-message: + prefix: "chore(deps)" + include: "scope" + groups: + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] - package-ecosystem: "docker" directory: "/" schedule: interval: "monthly" + commit-message: + prefix: "chore(deps)" + include: "scope" + groups: + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] -- 2.34.1