Skip to content

Commit 2572008

Browse files
committed
Add CODEOWNERS file
1 parent fed3454 commit 2572008

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/CODEOWNERS

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# CODEOWNERS file for go-stl
2+
#
3+
# This file defines who is responsible for reviewing and approving changes
4+
# to different parts of the codebase.
5+
#
6+
# For more information, see:
7+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
8+
9+
# Default owner for everything in the repo
10+
* @dev-sujan
11+
12+
# Core library implementation
13+
/stl/ @dev-sujan
14+
15+
# Documentation
16+
/docs/ @dev-sujan
17+
18+
# Examples
19+
/examples/ @dev-sujan
20+
21+
# Internal implementations
22+
/internal/ @dev-sujan
23+
24+
# CI/CD workflows
25+
/.github/workflows/ @dev-sujan
26+
27+
# Go module files
28+
go.mod @dev-sujan
29+
go.sum @dev-sujan
30+
31+
# Configuration files
32+
/.golangci.yml @dev-sujan

0 commit comments

Comments
 (0)