-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathCODEOWNERS
More file actions
47 lines (44 loc) · 3.42 KB
/
CODEOWNERS
File metadata and controls
47 lines (44 loc) · 3.42 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
# =============================================================================
# CODEOWNERS — automatic review request on pull requests
#
# GitHub requests a review from the listed owners whenever a PR touches
# the matched path. Combined with Branch Protection "Require review from
# Code Owners", this enforces sub-project ownership.
#
# Syntax: <pattern> <@github-user> ... # auto-label: <label>
# Patterns are evaluated top-to-bottom; the LAST matching rule wins.
# The "# auto-label:" annotation is parsed by .github/actions/codeowners-labels
# to drive automatic PR/Issue labeling. Adding a new component here is
# sufficient — no workflow changes are required.
# =============================================================================
# Global fallback — catches anything not matched below
* @casparant
# ---------------------------------------------------------------------------
# Component paths
# ---------------------------------------------------------------------------
/src/copilot-shell/ @kongche-jbw @samchu-zsl # auto-label: component:cosh
/src/agentsight/ @chengshuyi # auto-label: component:sight
/src/agent-sec-core/ @edonyzpc @kid9 # auto-label: component:sec-core
/src/agent-sec-core/agent-sec-cli/ @RemindD @edonyzpc # auto-label: component:sec-core
/src/agent-sec-core/cosh-extension/ @yangdao479 # auto-label: component:sec-core
/src/agent-sec-core/linux-sandbox/ @haosanzi # auto-label: component:sec-core
/src/agent-sec-core/openclaw-plugin/ @RemindD # auto-label: component:sec-core
/src/agent-sec-core/skills/ @1570005763 # auto-label: component:sec-core
/src/agent-sec-core/Makefile @yangdao479 # auto-label: component:sec-core
/src/agent-sec-core/*.spec.in @yangdao479 # auto-label: component:sec-core
/src/os-skills/ @Ziqi002 # auto-label: component:skill
/src/ws-ckpt/ @Ziqi002 # auto-label: component:ckpt
/src/osbase/ @casparant # auto-label: component:osbase
/src/tokenless/ @Forrest-ly @shiloong # auto-label: component:tokenless
/src/agent-memory/ @shiloong # auto-label: component:memory
/src/anolisa/ @kongche-jbw @ikunkun-sys # auto-label: component:anolisa
# ---------------------------------------------------------------------------
# Scope paths
# ---------------------------------------------------------------------------
/.github/ @kongche-jbw # auto-label: scope:ci
/docs/ @casparant # auto-label: scope:documentation
*.md @casparant # auto-label: scope:documentation
/NOTICE @casparant # auto-label: scope:documentation
/scripts/ @samchu-zsl # auto-label: scope:scripts
/cliff.toml @samchu-zsl # auto-label: scope:ci
/Makefile @casparant # auto-label: scope:scripts