From 1240dde83b08e39315e1eea16f0e0d5c61b83d36 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Thu, 22 Jan 2026 19:32:35 -0700 Subject: [PATCH 1/2] chore: Configure Dependabot for npm and update settings Updated Dependabot configuration to specify npm as the package ecosystem, changed update schedule to monthly, and added commit message formatting options. --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a427973 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + commit-message: + prefix: "chore" + prefix-development: "chore" + include: "scope" + groups: + production-dependencies: + dependency-type: "production" + update-types: + - "minor" + - "patch" + development-dependencies: + dependency-type: "development" + labels: + - "dependencies" + open-pull-requests-limit: 10 From 5c8e591f38ce56e19bd6e9c28c38e695991b08e3 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Thu, 22 Jan 2026 19:34:12 -0700 Subject: [PATCH 2/2] enh: add Config for GitHub Actions Added configuration for GitHub Actions updates to Dependabot. --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a427973..041fe58 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,7 @@ version: 2 updates: + # npm dependencies - package-ecosystem: "npm" directory: "/" schedule: @@ -21,3 +22,18 @@ updates: labels: - "dependencies" open-pull-requests-limit: 10 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + commit-message: + prefix: "chore" + include: "scope" + groups: + github-actions: + patterns: + - "*" + labels: + - "github-actions" + open-pull-requests-limit: 5