Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Propose introducing codeowners for GitHub reviewer assignent #1093

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Code owner file for Monoweb.
#
# We don't take this very seriously, but they are really useful for making
# GitHub auto-assign reviewers to PRs. It makes it easier for contributors to
# get pull requests reviewed.
#
# Another goal is also that people who have more experience with certain parts
# of the codebase get the responsibility to review patches that touch these
# parts.


# Until we have more defined responsibilities, I'll take ownership of code that
# is not covered by other, because I know every part of the codebase well.
* @junlarsen


# Pipelines and automation
.github @junlarsen
*.Dockerfile @junlarsen
docker-compose.yml @junlarsen


# Main applications
apps/brevduen @junlarsen
apps/dashboard @henrikskog
apps/rpc @junlarsen
apps/invoicification @junlarsen
apps/rif @junlarsen
apps/web @jotjern


# Libraries and packages
packages/auth @junlarsen @jotjern
packages/config
packages/core @junlarsen @jotjern @henrikskog @terbau
packages/db @jotjern
packages/email
packages/environment @junlarsen
packages/gateway-trpc @junlarsen @jotjern @henrikskog @terbau
packages/logger @junlarsen
packages/proxy-nextjs @junlarsen
packages/tsconfig
packages/types
packages/ui @brage-andreas @madsab
packages/utils @brage-andreas


# Tools
tools/migrator @jotjern @junlarsen
tools/shell @henrikskog


# Infrastructure located in the monorepo
infra/auth0 @henrikhorluck @jotjern
Loading