Skip to content

Commit

Permalink
chore(config): set up CODEOWNERS file to automatically mark reviewers #…
Browse files Browse the repository at this point in the history
…1791

ISSUE: #1791

SEE: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

CHANGELOG:
- [ ] Add a `CODEOWNERS` configuration file to automatically assign code
  reviewers based on changed files.
  • Loading branch information
yesudeep committed Feb 3, 2025
1 parent d4e9a8a commit 2ed918e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# General.
# TODO: Add groups.
* @pavelgj

# Python-related.
*.py @pavelgj @yesudeep
pyproject.toml @pavelgj @yesudeep
py/* @pavelgj @yesudeep

# Go-related.
*.go @apascal07
go/* @apascal07

# JavaScript-related.
*.js @pavelgj
*.ts @pavelgj
js/* @pavelgj
package.json @pavelgj

0 comments on commit 2ed918e

Please sign in to comment.