-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCODEOWNERS
More file actions
30 lines (23 loc) · 905 Bytes
/
CODEOWNERS
File metadata and controls
30 lines (23 loc) · 905 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
28
29
30
# CODEOWNERS — automatic review requests for PRs
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Global default — maintainer reviews everything
* @ajitpratap0
# Core parsing pipeline
/pkg/sql/tokenizer/ @ajitpratap0
/pkg/sql/parser/ @ajitpratap0
/pkg/sql/ast/ @ajitpratap0
/pkg/models/ @ajitpratap0
# Security-sensitive code — extra scrutiny
/pkg/sql/security/ @ajitpratap0
/cmd/gosqlx/internal/validate/ @ajitpratap0
# CLI commands
/cmd/gosqlx/ @ajitpratap0
# Public high-level API (semver-sensitive)
/pkg/gosqlx/ @ajitpratap0
# Release infrastructure
/.github/workflows/release.yml @ajitpratap0
/CHANGELOG.md @ajitpratap0
# Community health files
/CODE_OF_CONDUCT.md @ajitpratap0
/GOVERNANCE.md @ajitpratap0
/CONTRIBUTING.md @ajitpratap0