-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCODEOWNERS
More file actions
91 lines (74 loc) · 5.71 KB
/
CODEOWNERS
File metadata and controls
91 lines (74 loc) · 5.71 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# CODEOWNERS - Code Ownership and Review Assignment
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# Each line is a file pattern followed by one or more owners.
# Owners will be requested for review when someone opens a pull request.
#
# Format: <pattern> @username @username @org/team-name
#
# Examples:
# * @default-owner
# /docs/ @doc-team
# *.js @js-developers
# /apps/frontend/ @frontend-team
#
# ─────────────────────────────────────────────────────────────────
# Default Owners
# ─────────────────────────────────────────────────────────────────
# These owners will be the default owners for everything in the repo
# unless a later match takes precedence.
* @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# GitHub Workflows & Actions
# ─────────────────────────────────────────────────────────────────
# All changes to GitHub Actions workflows and composite actions
# require approval from workflow maintainers
/.github/workflows/ @alirezarezvani
/.github/actions/ @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Claude Code Automation
# ─────────────────────────────────────────────────────────────────
# Claude Code slash commands and subagents
/.claude/ @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Documentation
# ─────────────────────────────────────────────────────────────────
# All documentation files including markdown in docs/ and root
/docs/ @alirezarezvani
*.md @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Setup & Configuration
# ─────────────────────────────────────────────────────────────────
# Setup scripts, wizard, and configuration templates
/setup/ @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Core Configuration Files
# ─────────────────────────────────────────────────────────────────
# Root-level configuration that affects entire project
/implementation.md @alirezarezvani
/CLAUDE.md @alirezarezvani
/.github/CODEOWNERS @alirezarezvani
/.github/dependabot.yml @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Issue and PR Templates
# ─────────────────────────────────────────────────────────────────
/.github/ISSUE_TEMPLATE/ @alirezarezvani
/.github/pull_request_template.md @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Testing
# ─────────────────────────────────────────────────────────────────
/tests/ @alirezarezvani
# ─────────────────────────────────────────────────────────────────
# Notes for Future Team Growth
# ─────────────────────────────────────────────────────────────────
# As the team grows, add specific ownership rules:
#
# Example for team-based ownership:
# /docs/ @your-org/docs-team
# /.github/workflows/ @your-org/devops-team
# /.claude/ @your-org/automation-team
#
# Example for platform-specific code (when applicable):
# /mobile/ @your-org/mobile-team
# /web/ @your-org/frontend-team
# /api/ @your-org/backend-team