Security improvements: - CODEOWNERS: Define code review requirements - SECURITY.md: Link to security policy in .github/ for GitHub Security tab - Pull request template: Enforce PR checklist and guidelines - Issue templates: Bug reports and feature requests with structured forms - Issue config: Disable blank issues, add helpful links These files protect the repository by: - Requiring code review from @mellow-fox for all changes - Enforcing security-sensitive file approval (auth, database, Docker) - Providing clear contribution guidelines - Preventing low-quality or spam issues - Guiding contributors with structured templates Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
22 lines
569 B
Text
22 lines
569 B
Text
# Code Owners for TidyQuest
|
|
# These owners will be automatically requested for review when someone opens a pull request
|
|
|
|
# Global owner (all files)
|
|
* @mellow-fox
|
|
|
|
# Security-sensitive files (require explicit approval)
|
|
/SECURITY.md @mellow-fox
|
|
/.github/ @mellow-fox
|
|
/docker-compose.yml @mellow-fox
|
|
/Dockerfile @mellow-fox
|
|
/.env.example @mellow-fox
|
|
|
|
# Server code (backend)
|
|
/server/ @mellow-fox
|
|
|
|
# Database schema changes
|
|
/server/src/database.ts @mellow-fox
|
|
|
|
# Authentication and security
|
|
/server/src/middleware/auth.ts @mellow-fox
|
|
/server/src/routes/auth.ts @mellow-fox
|