-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
27 lines (19 loc) · 930 Bytes
/
CODEOWNERS
File metadata and controls
27 lines (19 loc) · 930 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
# CODEOWNERS
# Reference: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Replace placeholder handles with real org/team usernames as needed.
# Default owner for everything in the repo
* @ArchILLtect
# Web layer (controllers, JSP/JSTL, views)
src/main/java/**/web/** @ArchILLtect
src/main/webapp/** @ArchILLtect
# Service layer (business logic)
src/main/java/**/service/** @ArchILLtect
# Persistence layer (entities/DAOs)
src/main/java/**/persistence/** @ArchILLtect
# Security (Spring Security, Cognito)
src/main/java/**/security/** @ArchILLtect @your-org/security-team
# Deployment/CI (workflows, Procfile)
.github/** @ArchILLtect @your-org/deployment-team
Procfile @ArchILLtect @your-org/deployment-team
# Docs
/docs/** @ArchILLtect