From 4c3aef98a6a12deb5ebfc21d02f3c675b8ac409a Mon Sep 17 00:00:00 2001 From: y1j2x34 Date: Tue, 25 Nov 2025 22:04:49 +0800 Subject: [PATCH] chore: add 'ci' to allowed commit types --- commitlint.config.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.cjs b/commitlint.config.cjs index 88490db..dea9221 100644 --- a/commitlint.config.cjs +++ b/commitlint.config.cjs @@ -12,7 +12,7 @@ module.exports = { 'type-enum': [ 2, 'always', - ['build', 'chore', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'wip'], + ['build', 'chore', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test', 'wip', 'ci'], ], }, };