-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
36 lines (30 loc) · 1.2 KB
/
CODEOWNERS
File metadata and controls
36 lines (30 loc) · 1.2 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
# CODEOWNERS for hawk
#
# These owners will be the default owners for everything in the repo. Unless
# a later match takes precedence, they will be requested for review when
# someone opens a pull request.
#
# Format reference: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Global default
* @GrayCodeAI/maintainers
# Engine and core agent loop
/engine/ @GrayCodeAI/core-team
/cmd/ @GrayCodeAI/core-team
/tool/ @GrayCodeAI/core-team
/session/ @GrayCodeAI/core-team
# Sandbox / container / permissions (security-sensitive)
/sandbox/ @GrayCodeAI/security-team
/permissions/ @GrayCodeAI/security-team
/container/ @GrayCodeAI/security-team
/auth/ @GrayCodeAI/security-team
# CI / release / build tooling
/.github/ @GrayCodeAI/devops-team
/Makefile @GrayCodeAI/devops-team
/.goreleaser.yml @GrayCodeAI/devops-team
/Dockerfile @GrayCodeAI/devops-team
# Versioning + release artefacts
/VERSION @GrayCodeAI/maintainers
/CHANGELOG.md @GrayCodeAI/maintainers
# Documentation
*.md @GrayCodeAI/docs-team
/docs/ @GrayCodeAI/docs-team