-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCODEOWNERS
More file actions
51 lines (36 loc) · 948 Bytes
/
CODEOWNERS
File metadata and controls
51 lines (36 loc) · 948 Bytes
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
# Global owners - these users will be the default owners for everything in the repo
* @dkargatzis
# Core application code
/src/ @dkargatzis
# Agentic system
/src/agents/ @dkargatzis
# Rules engine and validators
/src/rules/ @dkargatzis
# API and webhook handlers
/src/api/ @dkargatzis
/src/webhooks/ @dkargatzis
# Event processors
/src/event_processors/ @dkargatzis
# Task scheduling and background processing
/src/tasks/ @dkargatzis
# Core configuration and models
/src/core/ @dkargatzis
# Documentation
/docs/ @dkargatzis
*.md @dkargatzis
# Configuration files
/.watchflow/ @dkargatzis
/pyproject.toml @dkargatzis
# GitHub-specific files
/.github/ @dkargatzis
# Docker and deployment
/Dockerfile* @dkargatzis
/docker-compose.yaml @dkargatzis
# Helm charts for Kubernetes deployment
/helm-chart/ @dkargatzis
# Tests
/tests/ @dkargatzis
# Scripts and utilities
/scripts/ @dkargatzis
# CI/CD workflows
/.github/workflows/ @dkargatzis