From 41a007bb2581e29b6c69e151f6987123c8d7857b Mon Sep 17 00:00:00 2001 From: Nick Vigilante Date: Tue, 14 Jul 2026 13:45:05 -0400 Subject: [PATCH 1/2] chore: add @coder/docs as CODEOWNER for docs content and tooling Routes docs content, Vale/markdownlint config, and the reference-docs generators to the docs team so @coder/docs is auto-requested for review on documentation changes. DOCS-571 --- CODEOWNERS | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index bd1f4e37991..0b3f71cd00f 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -40,3 +40,21 @@ coderd/database/queries/ai_provider_keys.sql @ibetitsmike @johnstcn coderd/database/queries/aicostcontrol.sql @ibetitsmike @johnstcn codersdk/aiproviders.go @ibetitsmike @johnstcn codersdk/aiproviders_bedrock.go @ibetitsmike @johnstcn + +# Documentation content and docs-specific tooling are owned by the docs team so +# that @coder/docs is automatically requested for review on documentation +# changes. Paths are anchored to the repo root. +/docs/ @coder/docs + +# Prose and Markdown linting configuration. +/.vale.ini @coder/docs +/.markdownlint.jsonc @coder/docs +/.markdownlint-cli2.jsonc @coder/docs + +# Reference-docs generators (CLI, API, audit log, and Prometheus metrics docs) +# and their shared helper. +scripts/clidocgen/ @coder/docs +scripts/apidocgen/ @coder/docs +scripts/auditdocgen/ @coder/docs +scripts/metricsdocgen/ @coder/docs +scripts/docgenenv/ @coder/docs From 3f5baafcc94ee40cdf292b42c01c2b67e1220e5a Mon Sep 17 00:00:00 2001 From: Nick Vigilante Date: Tue, 14 Jul 2026 13:49:26 -0400 Subject: [PATCH 2/2] chore: add offlinedocs and docs CI workflows to @coder/docs CODEOWNERS Adds /offlinedocs/ (docs team) and co-owns the docs-specific CI workflows (doc-check, docs-preview, deploy-docs, weekly-docs) with @jdomeracki-coder. DOCS-571 --- CODEOWNERS | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index 0b3f71cd00f..11f72aba969 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -45,6 +45,7 @@ codersdk/aiproviders_bedrock.go @ibetitsmike @johnstcn # that @coder/docs is automatically requested for review on documentation # changes. Paths are anchored to the repo root. /docs/ @coder/docs +/offlinedocs/ @coder/docs # Prose and Markdown linting configuration. /.vale.ini @coder/docs @@ -58,3 +59,11 @@ scripts/apidocgen/ @coder/docs scripts/auditdocgen/ @coder/docs scripts/metricsdocgen/ @coder/docs scripts/docgenenv/ @coder/docs + +# Docs-specific CI workflows. These sit under .github/ (owned above by +# @jdomeracki-coder), so the docs team is added as a co-owner to keep both +# parties notified of changes. +.github/workflows/doc-check.yaml @jdomeracki-coder @coder/docs +.github/workflows/docs-preview.yaml @jdomeracki-coder @coder/docs +.github/workflows/deploy-docs.yaml @jdomeracki-coder @coder/docs +.github/workflows/weekly-docs.yaml @jdomeracki-coder @coder/docs