From 21f9b60b2619c7a1931d18de8db56a891f49a1c2 Mon Sep 17 00:00:00 2001 From: Razvan Dimescu Date: Fri, 10 Apr 2026 07:49:18 +0300 Subject: [PATCH] fix: drop include:scope from dependabot commit-message config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The combination of `prefix: "chore(deps)"` and `include: "scope"` produced `chore(deps)(deps):` — double scope. Removing `include` keeps the prefix as-is. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4e5bd88..32994df 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,6 @@ updates: interval: "monthly" commit-message: prefix: "chore(deps)" - include: "scope" groups: minor-and-patch: patterns: ["*"] @@ -18,7 +17,6 @@ updates: interval: "monthly" commit-message: prefix: "chore(deps)" - include: "scope" groups: minor-and-patch: patterns: ["*"] @@ -30,7 +28,6 @@ updates: interval: "monthly" commit-message: prefix: "chore(deps)" - include: "scope" groups: minor-and-patch: patterns: ["*"] -- 2.34.1