From 487f2d0f2a7712e829445c2fc8ea8346435bf81f Mon Sep 17 00:00:00 2001 From: Eric Crosson Date: Wed, 22 Jul 2026 11:38:54 -0500 Subject: [PATCH] feat(dependabot): use fix commit prefix for dependency updates Configure Dependabot to prefix all automated pull requests and commits with the 'fix' Conventional Commit type. This ensures that any dependency update will trigger an automated release. Ticket: AI-757 --- .github/dependabot.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 2a5a51b6..ee100708 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -45,6 +45,9 @@ updates: labels: - dependencies - npm + commit-message: + prefix: 'fix' + include: 'scope' allow: - dependency-type: direct versioning-strategy: increase-if-necessary