-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
38 lines (31 loc) · 908 Bytes
/
Copy pathCODEOWNERS
File metadata and controls
38 lines (31 loc) · 908 Bytes
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
# CODEOWNERS — gitlab-mcp-server
#
# GitHub uses this file to automatically request reviews from code owners.
# Each line maps a file pattern to one or more owners. The last matching
# pattern takes precedence.
#
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owner for everything
* @jmrplens
# Go source code
*.go @jmrplens
go.mod @jmrplens
go.sum @jmrplens
# Build
Makefile @jmrplens
scripts/ @jmrplens
# Documentation
docs/ @jmrplens
README.md @jmrplens
CONTRIBUTING.md @jmrplens
# MCP tool implementations
internal/tools/ @jmrplens
internal/resources/ @jmrplens
internal/prompts/ @jmrplens
# MCP capabilities
internal/completions/ @jmrplens
internal/progress/ @jmrplens
internal/elicitation/ @jmrplens
# Configuration and GitLab client
internal/config/ @jmrplens
internal/gitlab/ @jmrplens