From e4f8b9576f3c6c3611d31f7229b8b2f92f412883 Mon Sep 17 00:00:00 2001 From: shenglongzhu Date: Thu, 9 Jul 2026 17:51:32 +0800 Subject: [PATCH] chore(ci): relax commit body line-length to warning The config-conventional preset enforces body-max-line-length at 100 as a hard error, which blocked commits that paste long URLs or stack traces. Downgrade it to a warning so contributors are nudged without being blocked; header-max-length and scope rules stay as errors. Assisted-by: Qoder Signed-off-by: shenglongzhu --- .github/commitlint.config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/commitlint.config.json b/.github/commitlint.config.json index 7f2531d07..03ee2829c 100644 --- a/.github/commitlint.config.json +++ b/.github/commitlint.config.json @@ -33,6 +33,11 @@ 2, "always", 120 + ], + "body-max-line-length": [ + 1, + "always", + 100 ] } }