-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCODEOWNERS
More file actions
29 lines (24 loc) · 1.04 KB
/
CODEOWNERS
File metadata and controls
29 lines (24 loc) · 1.04 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
#
# Defines code ownership for automatic review requests on pull requests.
# Owners are notified when files in their area are changed.
#
# Syntax: <pattern> <owner> [<owner> ...]
# Patterns follow .gitignore rules. Last matching rule wins.
#
# Reference: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default: all maintainers review everything
* @kagenti/plugin-adapters-maintainers
# CI and developer tooling
.github/ @kagenti/plugin-adapters-maintainers
Makefile @kagenti/plugin-adapters-maintainers
pyproject.toml @kagenti/plugin-adapters-maintainers
.pre-commit-config.yaml @kagenti/plugin-adapters-maintainers
# Core server implementation — highest impact changes
src/ @kagenti/plugin-adapters-maintainers
# Plugin framework and examples
plugins/ @kagenti/plugin-adapters-maintainers
# Documentation and governance
*.md @kagenti/plugin-adapters-maintainers
CODEOWNERS @kagenti/plugin-adapters-maintainers
SECURITY.md @kagenti/plugin-adapters-maintainers