From 8ab7703e80b86677fb514e14ae997d75656a8787 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Mon, 4 May 2026 11:21:15 +0900 Subject: [PATCH 1/2] chore(repo): introduce CODEOWNERS for path-based reviewer routing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add .github/CODEOWNERS so that pull requests auto-request reviewers from the @lablup/core_dev team. The file is advisory — it is not wired into branch protection, so CODEOWNERS approval is not required to merge. The default owner is @lablup/core_dev because the team's current membership precisely matches the active human reviewer pool observed across recent merged PRs. Refs #11466 Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/CODEOWNERS | 17 +++++++++++++++++ changes/11466.misc.md | 1 + 2 files changed, 18 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 changes/11466.misc.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000..e79f406537b --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,17 @@ +# CODEOWNERS — auto-request reviewers based on changed paths. +# +# This file is advisory: it makes GitHub auto-request the right reviewers +# on each PR. It is NOT (yet) wired into branch protection, so CODEOWNERS +# approval is not required to merge. See issue #11466. +# +# `@lablup/core_dev` is used as the default owner because the team's +# membership matches the active human reviewer pool observed across +# recent merged PRs. Migrate to more granular per-component handles +# (e.g. specialists for storage, accelerator) only when a real review- +# coverage gap surfaces. +# +# NOTE: requires GitHub "Code review assignment" to be enabled on the +# `core_dev` team — otherwise every PR auto-requests all members. + +# Default owner — applies to every path not matched below. +* @lablup/core_dev diff --git a/changes/11466.misc.md b/changes/11466.misc.md new file mode 100644 index 00000000000..1d378f81eb2 --- /dev/null +++ b/changes/11466.misc.md @@ -0,0 +1 @@ +Add `.github/CODEOWNERS` so that pull requests auto-request reviewers from the `@lablup/core_dev` team. From e90c4e2db9055b687dc017e272bc99c5ef599bb7 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Wed, 6 May 2026 05:14:48 +0000 Subject: [PATCH 2/2] docs: Rename the news fragment with the PR number 11466.misc.md -> 11467.misc.md Co-authored-by: octodog --- changes/{11466.misc.md => 11467.misc.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename changes/{11466.misc.md => 11467.misc.md} (100%) diff --git a/changes/11466.misc.md b/changes/11467.misc.md similarity index 100% rename from changes/11466.misc.md rename to changes/11467.misc.md