-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
56 lines (46 loc) · 1.61 KB
/
CODEOWNERS
File metadata and controls
56 lines (46 loc) · 1.61 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
# CODEOWNERS file for Poster project
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Global owners - will be requested for review for all PRs
* @adcondev
# Core components
/pkg/composer/ @adcondev
/pkg/connection/ @adcondev
/pkg/commands/ @adcondev
/pkg/document/ @adcondev
/pkg/graphics/ @adcondev
/pkg/profile/ @adcondev
/pkg/service/ @adcondev
/pkg/tables/ @adcondev
/pkg/emulator/ @adcondev
/pkg/constants/ @adcondev
# Testing infrastructure
/test/ @adcondev
/internal/testutils/ @adcondev
**/*_test.go @adcondev
# Documentation - requires approval for changes
*.md @adcondev
/docs/ @adcondev
/api/v1/*.md @adcondev
# CI/CD and configuration - critical files
/.github/ @adcondev
/.github/workflows/ @adcondev
/.github/codeql/ @adcondev
/.golangci.yml @adcondev
/.codecov.yml @adcondev
/Makefile @adcondev
/Dockerfile @adcondev
# Dependencies - auto-reviewed by Dependabot but owner gets notified
/go.mod @adcondev
/go.sum @adcondev
/package.json @adcondev
/package-lock.json @adcondev
# Security-sensitive files
/SECURITY.md @adcondev
/.github/ISSUE_TEMPLATE/security_report.yml @adcondev
# API schemas
/api/ @adcondev
/api/v1/ @adcondev
# Examples - less critical but should be reviewed
/examples/ @adcondev
# Assets
/assets/ @adcondev