From 6ab6a359ed18866505dc6bfae4cf419f3b649be1 Mon Sep 17 00:00:00 2001 From: Abin Joseph Date: Fri, 17 Apr 2026 14:37:29 +0530 Subject: [PATCH] Support Co-developed-by commit trailer The "Co-developed-by" trailer is used for patches co-created by multiple developers. Extend the commit message checker to support it. Signed-off-by: Abin Joseph --- check_commits.py | 1 + 1 file changed, 1 insertion(+) diff --git a/check_commits.py b/check_commits.py index 2e2a188..b1bf147 100644 --- a/check_commits.py +++ b/check_commits.py @@ -9,6 +9,7 @@ TRAILER_PREFIXES = ( "signed-off-by:", "co-authored-by:", + "co-developed-by:", "reviewed-by:", "acked-by:", "tested-by:",