-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
32 lines (25 loc) · 859 Bytes
/
CODEOWNERS
File metadata and controls
32 lines (25 loc) · 859 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
# AD-Audit Code Owners
# This file defines who can approve changes to different parts of the repository
# Global owners - can approve any changes
* @adrian207
# Core modules require security review
/Modules/Invoke-AD-Audit.ps1 @adrian207
/Modules/Invoke-CredentialTheftPrevention.ps1 @adrian207
/Modules/Invoke-DomainControllerSecurity.ps1 @adrian207
/Modules/Invoke-LeastPrivilegeAssessment.ps1 @adrian207
# Security-sensitive files
/.github/workflows/ @adrian207
/.github/rulesets/ @adrian207
/CODEOWNERS @adrian207
/SECURITY.md @adrian207
# Documentation requires technical review
/docs/ @adrian207
/README.md @adrian207
# Tests require code quality review
/Tests/ @adrian207
# Libraries require security review
/Libraries/ @adrian207
# Configuration files
/azure-pipelines.yml @adrian207
/Publish-ToGallery.ps1 @adrian207
/AD-Audit.psd1 @adrian207