From d981fd51e45223fc3833f92fcfef22afb5eba50e Mon Sep 17 00:00:00 2001 From: dajiaohuang Date: Fri, 18 Sep 2026 06:58:40 +0800 Subject: [PATCH] ci: fix the index spec path in CODEOWNERS The index specification moved from docs/src/format/table/index/ to docs/src/format/index/ when the specs were split, but the CODEOWNERS entry still named the old path. It matched no tracked file, so the index spec docs were left without a review request, unlike the file and table specs. --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index adfbf97021a..92637d9f00f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -11,4 +11,4 @@ docs/src/format/table/ @table-spec-team # index specification protos/index.proto @index-spec-team protos/index_old.proto @index-spec-team -docs/src/format/table/index/ @index-spec-team +docs/src/format/index/ @index-spec-team