-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
72 lines (61 loc) · 2.03 KB
/
Copy pathCODEOWNERS
File metadata and controls
72 lines (61 loc) · 2.03 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# CODEOWNERS - Automatic Reviewer Assignment
#
# This file defines code ownership for automatic review requests.
# When a PR touches these files, the specified owners are automatically
# requested for review.
#
# Format: path/pattern @username @team
# More specific patterns override less specific ones.
#
# Documentation: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# ==================== Global Owners ====================
# Default owners for everything in the repo
* @rahulbsw
# ==================== Critical Files ====================
# Security and configuration files require careful review
/SECURITY.md @rahulbsw
/CODE_OF_CONDUCT.md @rahulbsw
/LICENSE @rahulbsw
/.github/workflows/ @rahulbsw
# ==================== Core Application ====================
# Main Rust application code
/src/ @rahulbsw
/Cargo.toml @rahulbsw
/Cargo.lock @rahulbsw
# ==================== Infrastructure ====================
# Docker and Kubernetes configurations
/Dockerfile @rahulbsw
/docker-compose.yml @rahulbsw
/helm/ @rahulbsw
/.dockerignore @rahulbsw
# Kubernetes operator
/operator/ @rahulbsw
# ==================== Documentation ====================
# Documentation changes
/docs/ @rahulbsw
/README.md @rahulbsw
/ARCHITECTURE.md @rahulbsw
/CONTRIBUTING.md @rahulbsw
# Examples and configuration
/examples/ @rahulbsw
/benchmarks/ @rahulbsw
# ==================== Testing ====================
# Test files and benchmarks
/tests/ @rahulbsw
/benches/ @rahulbsw
# ==================== UI (if applicable) ====================
/ui/ @rahulbsw
# ==================== CI/CD ====================
# GitHub Actions and automation
/.github/ @rahulbsw
# ==================== Notes ====================
# To add team-based ownership:
# 1. Create a GitHub team (e.g., @org/security-team)
# 2. Replace @rahulbsw with @org/team-name for specific paths
#
# Example:
# /src/security/ @org/security-team
# /docs/ @org/docs-team
#
# Multiple owners can be specified:
# /src/kafka/ @rahulbsw @org/kafka-experts