From 1769180a23bc966810edbed0a292ed86ce110507 Mon Sep 17 00:00:00 2001 From: Joachim Brandon LeBlanc Date: Mon, 9 Mar 2026 17:40:33 -0400 Subject: [PATCH] Change Dependabot update schedule and settings Updated Dependabot configuration to change update frequency to weekly and modify commit message settings. --- .github/dependabot.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8798257 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,29 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: weekly + commit-message: + prefix: "ci" + include: "scope" + groups: + cargo: + patterns: + - "*" + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + commit-message: + prefix: "ci" + include: "scope" + groups: + github-actions: + patterns: + - "*"