From 93a37fd01e56d68869683ea86add6ec9b8a71335 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Tue, 2 Jun 2026 19:23:24 +0100 Subject: [PATCH] chore(governance): populate .github/CODEOWNERS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CODEOWNERS was empty (zero bytes). This routes PR review/notification to @hyperpolymath for all paths, matching the pattern used in the sibling echidna repo (.github/CODEOWNERS there). No license / SPDX changes anywhere. The known PMPL-1.0 → MPL-2.0 drift on .gitignore + .gitattributes is filed separately as a manual-owner task per the no-automated-licence-edits rule. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/CODEOWNERS | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..074c0d1 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: MPL-2.0 +# CODEOWNERS - Code ownership for echidnabot +# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +# Default owner for everything +* @hyperpolymath + +# Core bot crates +/src/ @hyperpolymath +/crates/ @hyperpolymath + +# Infrastructure and CI/CD +/.github/ @hyperpolymath +/scripts/ @hyperpolymath + +# SCM and machine-readable metadata +/.machine_readable/ @hyperpolymath