-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
38 lines (30 loc) · 958 Bytes
/
Copy pathCODEOWNERS
File metadata and controls
38 lines (30 loc) · 958 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
31
32
33
34
35
36
37
38
# CODEOWNERS for Nephoran Intent Operator
# This file defines code ownership for automated review assignment
# Currently in single-developer mode - teams will be activated when members join
# Default owners for everything
* @thc1006
# API and Controllers - Future: Nephio team
/api/ @thc1006 #@nephio-team
/controllers/ @thc1006 #@nephio-team
/pkg/nephio/ @thc1006 #@nephio-team
# RAN Simulation - Future: RAN sim team
/sim/ @thc1006 #@ran-sim-team
/planner/ @thc1006 #@ran-sim-team
# CI/CD and Infrastructure
/.github/ @thc1006
/.github/workflows/ @thc1006
/Makefile @thc1006
/Dockerfile* @thc1006
/CODEOWNERS @thc1006
# Contracts and Documentation (Critical - multiple owners when team grows)
/docs/contracts/ @thc1006 #@nephio-team @ran-sim-team
/docs/ @thc1006
# Scripts and Operations
/scripts/ @thc1006
/ops/ @thc1006
# Integration and MVP
/examples/ @thc1006
/kpt-packages/ @thc1006
# Test Infrastructure
/tests/ @thc1006
/test-*.sh @thc1006