-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCODEOWNERS
More file actions
40 lines (33 loc) · 1.19 KB
/
CODEOWNERS
File metadata and controls
40 lines (33 loc) · 1.19 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
# Code Owners for pushduck
# This file defines who gets automatically requested for review
# when specific files or directories are modified
# Global fallback - repository maintainers
* @abhay-ramesh
# Core package files - require maintainer review
packages/pushduck/src/ @abhay-ramesh
packages/pushduck/package.json @abhay-ramesh
packages/pushduck/tsconfig.json @abhay-ramesh
packages/pushduck/tsup.config.ts @abhay-ramesh
# CLI package - require maintainer review
packages/cli/ @abhay-ramesh
# Release and automation - require maintainer review
.changeset/ @abhay-ramesh
.github/workflows/ @abhay-ramesh
packages/pushduck/scripts/ @abhay-ramesh
RELEASE_LIFECYCLE_GUIDE.md @abhay-ramesh
GITHUB_AUTOMATION_GUIDE.md @abhay-ramesh
# Documentation - can be reviewed by docs team
*.md
docs/
apps/docs/
README.md
# Configuration files - require maintainer review
package.json @abhay-ramesh
pnpm-lock.yaml @abhay-ramesh
pnpm-workspace.yaml @abhay-ramesh
turbo.json @abhay-ramesh
.gitignore @abhay-ramesh
# Security-sensitive files - require security review
.github/workflows/release.yml @abhay-ramesh
packages/pushduck/scripts/pre-release-check.sh @abhay-ramesh
packages/pushduck/scripts/health-check.sh @abhay-ramesh