From 1d3dfdcb361cd368270f1fe469eff133bcf19487 Mon Sep 17 00:00:00 2001 From: Nate Bross Date: Wed, 19 Aug 2026 17:11:48 -0500 Subject: [PATCH] ci: pin Dependabot commit message prefix Without an explicit commit-message block, Dependabot infers the prefix from recent commit history, so it dropped chore(deps) once a few unprefixed bumps landed. Setting prefix, prefix-development, and include: scope on every ecosystem keeps PR titles consistent. --- .github/dependabot.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d3dce5f8..9cb7bf58 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: "/" schedule: interval: "daily" + commit-message: + prefix: "chore" + prefix-development: "chore" + include: "scope" groups: NLog: patterns: @@ -18,9 +22,17 @@ updates: directory: "/.config" schedule: interval: "daily" + commit-message: + prefix: "chore" + prefix-development: "chore" + include: "scope" - package-ecosystem: "github-actions" directory: "/" schedule: # Check for updates to GitHub Actions every weekday interval: "daily" - timezone: America/Chicago \ No newline at end of file + timezone: America/Chicago + commit-message: + prefix: "chore" + prefix-development: "chore" + include: "scope"