The CODEOWNERS file has an owner listed without a file pattern prefix. GitHub requires pattern @owner syntax — without it, the line is silently skipped and no ownership is enforced.
The pattern is followed by one or more GitHub usernames or team names. [...] If any line in your CODEOWNERS file contains invalid syntax, that line will be skipped.
— About code owners (GitHub Docs)
Current
# codeowners for commiter verify
# see https://help.github.com/en/articles/about-code-owners
@pantheon-systems/decoupled-kit-maintainers
Suggested fix
# codeowners for commiter verify
# see https://help.github.com/en/articles/about-code-owners
* @pantheon-systems/decoupled-kit-maintainers
The CODEOWNERS file has an owner listed without a file pattern prefix. GitHub requires
pattern @ownersyntax — without it, the line is silently skipped and no ownership is enforced.Current
Suggested fix