Skip to content

Commit 0704642

Browse files
fix(codeowners): substitute the un-instantiated {{OWNER}} placeholder (#44)
CODEOWNERS carried the literal `@{{OWNER}}`. GitHub's own validator reports every such rule as **Invalid owner**, so the file assigns **no code owners at all** — and any ruleset with `require_code_owner_review` becomes **unsatisfiable**. `just init` does a repo-wide brace-token substitution and simply never ran here. Measured estate-wide: **54 repos** carried it; **2 are genuine templates** where the placeholder is correct and are deliberately untouched. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
1 parent bb56b82 commit 0704642

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)