-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCODEOWNERS
More file actions
32 lines (25 loc) · 1.23 KB
/
Copy pathCODEOWNERS
File metadata and controls
32 lines (25 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# CODEOWNERS — automatic review assignment
#
# Syntax: <pattern> <owner1> <owner2> ...
# Owners receive a review request on every PR that touches the pattern.
# The last matching rule wins, so put the most specific rules at the bottom.
# See https://docs.github.com/en/repositories/managing-your-repositories-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for everything not matched below.
* @mickyarun
# Backend (Python / FastAPI / SQLAlchemy / Alembic)
/backend/ @mickyarun
# Frontend (Vue / Vuetify / PlayCanvas)
/frontend/ @mickyarun
# Multiplayer (Colyseus)
/multiplayer/ @mickyarun
# Shared (frontend + multiplayer consume this — changes affect both)
/shared/ @mickyarun
# Database migrations get extra scrutiny — any change must be reviewed
# even if the surrounding directory was already approved.
/backend/alembic/ @mickyarun
# CI / repo plumbing
/.github/ @mickyarun
/CLAUDE.md @mickyarun
/pyproject.toml @mickyarun
/package.json @mickyarun
/docker-compose*.yml @mickyarun