-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCODEOWNERS
More file actions
27 lines (23 loc) · 998 Bytes
/
CODEOWNERS
File metadata and controls
27 lines (23 loc) · 998 Bytes
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
# CODEOWNERS — paths that auto-request review from the listed owners.
#
# GitHub matches paths in order. The most specific match for a given
# file wins. The catch-all `*` pattern at the top covers everything
# else; the path-specific entries below document review responsibility
# for security-sensitive surfaces explicitly.
#
# Format reference:
# https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default — all files
* @melvincarvalho
# Auth / security-sensitive paths
/src/auth/ @melvincarvalho
/src/idp/ @melvincarvalho
/src/utils/ssrf.js @melvincarvalho
# CLI and release surface
/bin/ @melvincarvalho
/package.json @melvincarvalho
/package-lock.json @melvincarvalho
# Legal / policy substrate
/LICENSE @melvincarvalho
/CONTRIBUTING.md @melvincarvalho
/.github/ @melvincarvalho