-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
44 lines (37 loc) · 1.17 KB
/
CODEOWNERS
File metadata and controls
44 lines (37 loc) · 1.17 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
# CODEOWNERS
# This file documents code ownership and review requirements for SecureExecutionEnvironment
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default ownership - All files in the repository
# Default ownership
* @navinBRuas
# Add per-path overrides below if needed
# docs/* @navinBRuas
# submodule-name/* @owner1 @owner2
# Core security modules
/process-sandbox/ @navinBRuas
/seccomp-profiles/ @navinBRuas
/capability-based-security/ @navinBRuas
/audit-logger/ @navinBRuas
/crypto-vault/ @navinBRuas
# Extension modules
/runtime-policy-enforcer/ @navinBRuas
/deterministic-executor/ @navinBRuas
/security-monitor/ @navinBRuas
/oci-runtime-adapter/ @navinBRuas
/network-firewall/ @navinBRuas
/ipc-broker/ @navinBRuas
# Build system and automation
/scripts/ @navinBRuas
Makefile @navinBRuas
/.github/ @navinBRuas
# Documentation and governance
*.md @navinBRuas
LICENSE @navinBRuas
CONTRIBUTING.md @navinBRuas
CODE_OF_CONDUCT.md @navinBRuas
SECURITY.md @navinBRuas
CODEOWNERS @navinBRuas
# Quality standards
.clang-format @navinBRuas
.gitignore @navinBRuas
.editorconfig @navinBRuas