-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCODEOWNERS
More file actions
29 lines (23 loc) · 941 Bytes
/
Copy pathCODEOWNERS
File metadata and controls
29 lines (23 loc) · 941 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
# CODEOWNERS — auto-request reviews for matching paths.
# Syntax: <pattern> <owner> [<owner> ...]
# Reference: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for the entire repo
* @Cranot
# Workflows / CI / release pipeline — explicit owner
/.github/workflows/ @Cranot
/.github/ @Cranot
# Source code — owner reviews all
/src/ @Cranot
# Public-facing documentation
/docs/ @Cranot
/templates/distribution/ @Cranot
/CHANGELOG.md @Cranot
/README.md @Cranot
# Security-sensitive surface
/src/roam/output/sarif.py @Cranot
/src/roam/attest/ @Cranot
/src/roam/security/ @Cranot
/src/roam/audit/ @Cranot
# Build + packaging
/pyproject.toml @Cranot
/.github/workflows/publish.yml @Cranot