From 494e117c75849ceb6a72e581e90dc0a655c6a2bf Mon Sep 17 00:00:00 2001 From: FBumann <117816358+FBumann@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:33:57 +0100 Subject: [PATCH] ci: add conventional commit prefixes to dependabot PR titles Configure dependabot to use "ci:" prefix for GitHub Actions updates and "chore:" prefix for pip dependency updates, so PRs pass the semantic PR title check automatically. Co-Authored-By: Claude Opus 4.6 --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2e8b124..9df4286 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,8 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "chore" groups: dev-dependencies: patterns: @@ -23,3 +25,5 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "ci"