-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathCODEOWNERS
More file actions
27 lines (21 loc) · 1.07 KB
/
CODEOWNERS
File metadata and controls
27 lines (21 loc) · 1.07 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
# CODEOWNERS — Automatic review requests
#
# These paths route review requests to the right people.
# Format: <pattern> <@user or @org/team>
#
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for everything not matched below
* @Gentleman-Programming
# Core store and server — highest sensitivity
internal/store/ @Gentleman-Programming
internal/server/ @Gentleman-Programming
# CLI surface — user-facing, needs careful review
cmd/ @Gentleman-Programming
# GitHub infrastructure — workflows and templates
.github/ @Gentleman-Programming
# Skills — these ship as agent instructions to users
skills/ @Gentleman-Programming
# Release and build config — changes affect all platforms
.goreleaser.yaml @Gentleman-Programming
go.mod @Gentleman-Programming
go.sum @Gentleman-Programming