-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODEOWNERS
More file actions
33 lines (26 loc) · 759 Bytes
/
CODEOWNERS
File metadata and controls
33 lines (26 loc) · 759 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
# CODEOWNERS file for automatic code review assignments
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Global code owners - these users will be requested for review on every PR
* @codcod
# Python source code
/src/ @codcod
*.py @codcod
# Configuration files
pyproject.toml @codcod
uv.lock @codcod
.python-version @codcod
.env.sample @codcod
# Documentation
README.md @codcod
CHANGELOG.md @codcod
/docs/ @codcod
# GitHub workflows and configuration
/.github/ @codcod
/.github/workflows/ @codcod
/.github/dependabot.yml @codcod
# Build and development configuration
Makefile @codcod
.editorconfig @codcod
.gitignore @codcod
# Scripts and executables
/bin/ @codcod