-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
32 lines (28 loc) · 1.65 KB
/
Copy pathCODEOWNERS
File metadata and controls
32 lines (28 loc) · 1.65 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 request rules.
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# Every PR that touches a path on the left auto-requests review from the
# owner on the right. Order matters: later patterns win.
# Default owner for everything not matched below.
* @urosradojicic
# Security-critical surfaces — touch these and the security review is gated.
/SECURITY.md @urosradojicic
/.github/SECURITY.md @urosradojicic
/supabase/migrations/ @urosradojicic
/supabase/functions/ @urosradojicic
/blockchain/programs/ @urosradojicic
/src/lib/security/ @urosradojicic
/src/lib/solana/ @urosradojicic
/src/contexts/AuthContext.tsx @urosradojicic
/src/components/RoleGuard.tsx @urosradojicic
# Build / CI / supply chain — same.
/.github/workflows/ @urosradojicic
/.devcontainer/ @urosradojicic
/package.json @urosradojicic
/package-lock.json @urosradojicic
/vercel.json @urosradojicic
# Documentation surfaces — judge-facing should not regress without sign-off.
/judges/ @urosradojicic
/README.md @urosradojicic
/ARCHITECTURE.md @urosradojicic
/docs/adr/ @urosradojicic