From a93aad20701793a9a0a9b84365f8cefd8607f4c0 Mon Sep 17 00:00:00 2001 From: prosdev Date: Fri, 7 Nov 2025 21:51:07 -0800 Subject: [PATCH] maint(ci): allow chore commits for automated version bumps Changesets automation creates commits with 'chore:' type which was being rejected by commitlint. Add 'chore' to allowed commit types. --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index f7dccf0..f9e722d 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -15,7 +15,7 @@ module.exports = { "subject-full-stop": [2, "never", "."], "type-case": [2, "always", "lower-case"], "type-empty": [2, "never"], - "type-enum": [2, "always", ["feat", "bug", "maint"]], + "type-enum": [2, "always", ["feat", "bug", "maint", "chore"]], "scope-case": [2, "always", "lower-case"], "scope-enum": [ 2,