Files
FrenoCorp/CODEOWNERS
Line: 6: incorrect codeowner user: senior-engineer Line: 6: no users/groups matched Line: 7: incorrect codeowner user: senior-engineer Line: 7: no users/groups matched Line: 10: incorrect codeowner user: founding-engineer Line: 10: no users/groups matched Line: 11: incorrect codeowner user: founding-engineer Line: 11: no users/groups matched Line: 14: incorrect codeowner regexp: error parsing regexp: invalid nested repetition operator: `**` Line: 15: incorrect codeowner regexp: error parsing regexp: invalid nested repetition operator: `**` Line: 18: incorrect codeowner user: code-reviewer Line: 18: no users/groups matched
Michael Freno e8d00bde6f FRE-4661: Implement ShieldAI PR workflow recommendations
- Add Gitea PR template with code review checklist
- Add CODEOWNERS file for review assignment policy
- Update shieldai-workflow.md with implemented workflow
- Add branch-protection-rules.yaml for gt/master protection

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-05-02 19:39:49 -04:00

19 lines
538 B
Plaintext

# CODEOWNERS
# This file defines ownership of directories and files
# Rules are evaluated from top to bottom; first match wins
# Senior Engineer owns all TypeScript source files
*.ts @senior-engineer
*.tsx @senior-engineer
# Founding Engineer owns architecture and configuration
*.config.* @founding-engineer
*.json @founding-engineer
# Security Reviewer owns security-critical paths
**/auth/** @security-reviewer
**/middleware/** @security-reviewer
# Code Reviewer reviews all Pull Requests
* @code-reviewer