-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCODEOWNERS
More file actions
21 lines (15 loc) · 736 Bytes
/
CODEOWNERS
File metadata and controls
21 lines (15 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file defines code owners for various parts of the repository
# Code owners are automatically requested for review on pull requests that modify code they own
# Learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owners for everything in the repo (unless a later match takes precedence)
* @wirasm
# Workflow files require approval from wirasm
.github/workflows/ @wirasm
# Core utility libraries
src/utility_library/ @wirasm
# Concept library implementations
concept_library/ @wirasm
# Python build configuration
pyproject.toml @wirasm
# Documentation files
*.md @wirasm