-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
29 lines (24 loc) · 1.08 KB
/
CODEOWNERS
File metadata and controls
29 lines (24 loc) · 1.08 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
# CODEOWNERS file
#
# This file defines who owns which parts of the codebase.
# Code owners are automatically requested for review when someone opens a PR that modifies code they own.
#
# Syntax: path/to/file @github-username @github-org/team-name
#
# Learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owners for everything in the repo
# Replace with actual team/usernames
* @CoforgeInsurance/dev-team
# Workflow and CI/CD configuration
/.github/ @CoforgeInsurance/devops-team
# Documentation
*.md @CoforgeInsurance/tech-writers @CoforgeInsurance/dev-team
# Process documentation - requires lead approval
/DEVELOPMENT_PROCESS.md @CoforgeInsurance/engineering-leads
/CONTRIBUTING.md @CoforgeInsurance/engineering-leads
# Example ownership patterns (uncomment and customize as needed):
# /src/frontend/ @CoforgeInsurance/frontend-team
# /src/backend/ @CoforgeInsurance/backend-team
# /src/api/ @CoforgeInsurance/api-team
# /tests/ @CoforgeInsurance/qa-team
# /docs/ @CoforgeInsurance/tech-writers