From f168c09689963aa072c525da72fc6779ce46bb30 Mon Sep 17 00:00:00 2001 From: "Ketan (CometChat)" Date: Wed, 9 Sep 2026 18:59:50 +0530 Subject: [PATCH] fix(codeowners): correct webhooks owner handle and glob pattern Two bugs on the webhooks rule: 1. @siva is not the CometChat Siva. It resolves to 'Satish Gunnu', an account created in 2008 that is neither a cometchat org member nor a collaborator on this repo, so GitHub silently drops the rule and no review is ever requested for webhooks docs. Every other entry for the same person uses @siva-cometchat, who owns /rest-api/ and the API schema files and is a verified org member and repo collaborator. 2. CODEOWNERS uses gitignore-style patterns, where a backslash escapes the asterisk into a literal '*' character. 'webhooks\*.mdx' therefore matched only a file literally named 'webhooks*.mdx' and matched neither fundamentals/webhooks.mdx nor fundamentals/webhooks-overview.mdx. Unescaped, it matches both. Co-Authored-By: Claude Opus 5 --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 2d8dc495c..3eb0b82ae 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -44,4 +44,4 @@ # Webhook documentation files -/fundamentals/webhooks\*.mdx @siva +/fundamentals/webhooks*.mdx @siva-cometchat