-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
29 lines (23 loc) · 948 Bytes
/
CODEOWNERS
File metadata and controls
29 lines (23 loc) · 948 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
# Require reviews from code owners and security team for critical files
# Security workflows and configuration
/.github/workflows/security.yml @security-team @docdyhr
/.github/workflows/codeql-analysis.yml @security-team @docdyhr
/.github/dependabot.yml @security-team @docdyhr
# Core application code
/versiontracker/ @docdyhr
# CI/CD workflows
/.github/workflows/ci.yml @docdyhr
/.github/workflows/lint.yml @docdyhr
/.github/workflows/performance.yml @docdyhr
/.github/workflows/release.yml @docdyhr
# Tests and test configuration
/tests/ @docdyhr
/test_*.yaml @docdyhr
/pyproject.toml @docdyhr
# Documentation
/README.md @docdyhr
/CONTRIBUTING.md @docdyhr
/CHANGELOG.md @docdyhr
/docs/ @docdyhr
# All other files default to code owner
* @docdyhr