Skip to content

Commit f2df8b1

Browse files
hyperpolymathclaude
andcommitted
fix(codeowners): substitute the un-instantiated {{OWNER}} placeholder
CODEOWNERS carried the literal `@{{OWNER}}`. GitHub's own validator (/repos/{owner}/{repo}/codeowners/errors) reports every such rule as 'Invalid owner', which means the file assigns NO code owners at all -- and any ruleset with require_code_owner_review becomes unsatisfiable, since a review from a non-existent owner can never arrive. This is not a template artefact here: `just init` performs a repo-wide brace-token substitution and simply never ran for this repo. Measured estate-wide 2026-07-29: 54 repos carried the placeholder, of which 2 are genuine templates where it is CORRECT and are deliberately untouched. Substituted with the repo's actual owner (hyperpolymath). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent bb56b82 commit f2df8b1

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/CODEOWNERS

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# CODEOWNERS - Define code review assignments
33
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
44
#
5-
# Replace {{OWNER}} with your GitHub username or team
5+
# Replace hyperpolymath with your GitHub username or team
66

77
# Default owners for everything
8-
* @{{OWNER}}
8+
* @hyperpolymath
99

1010
# Security-sensitive files require explicit review
11-
SECURITY.md @{{OWNER}}
12-
.github/workflows/ @{{OWNER}}
13-
Trustfile.a2ml @{{OWNER}}
14-
.machine_readable/ @{{OWNER}}
11+
SECURITY.md @hyperpolymath
12+
.github/workflows/ @hyperpolymath
13+
Trustfile.a2ml @hyperpolymath
14+
.machine_readable/ @hyperpolymath

0 commit comments

Comments
 (0)