chore: add CODEOWNERS file - #66
Conversation
Greptile SummaryThis PR adds a Confidence Score: 4/5Not safe to merge as-is — the CODEOWNERS entry references the wrong org and will have no effect. A single one-line fix is needed (wrong GitHub org in team reference). The change is otherwise minimal and low-risk, but the file is entirely ineffective until corrected. .github/CODEOWNERS — team org must be changed from
|
| Filename | Overview |
|---|---|
| .github/CODEOWNERS | Adds CODEOWNERS but references @cosmos/stack-team instead of the intended @skip-mev/stack-team; the wrong org means ownership rules will not take effect. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[PR opened in skip-mev/catalyst] --> B{GitHub reads CODEOWNERS}
B --> C["Entry: * @cosmos/stack-team"]
C --> D{Resolve team org}
D -->|"org = cosmos ≠ skip-mev"| E[Team reference ignored]
E --> F[No reviewers auto-requested]
E --> G[No ownership protection enforced]
D -->|"Correct: * @skip-mev/stack-team"| H[Team resolved successfully]
H --> I[Reviewers auto-requested on PR]
H --> J[CODEOWNERS protection active]
Reviews (1): Last reviewed commit: "Apply suggestion from @dianab-cl" | Re-trigger Greptile
Adds
.github/CODEOWNERSto assign@skip-mev/stack-teamas code owners for all files.