From d5b1737fb923a616df7bfa6a05b27f64acd29d71 Mon Sep 17 00:00:00 2001 From: "nethermind-oss-compliance[bot]" <189609862+nethermind-oss-compliance[bot]@users.noreply.github.com> Date: Fri, 20 Jun 2025 09:46:20 +0000 Subject: [PATCH] Add CODEOWNERS file template --- CODEOWNERS | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..ec149cc --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,65 @@ +# CODEOWNERS File Template +# +# This file defines code ownership for this repository. +# Code owners are automatically requested for review when someone opens a pull request. +# +# 📖 Learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +# ============================================================================= +# GLOBAL OWNERS +# ============================================================================= +# These owners will be requested for review on ALL pull requests +# Uncomment and customize the line below: + +# * @NethermindEth/your-team-name + +# ============================================================================= +# PATH-BASED OWNERSHIP +# ============================================================================= +# Define owners for specific files or directories +# Examples: + +# Documentation +# *.md @NethermindEth/docs-team +# /docs/ @NethermindEth/docs-team + +# Configuration files +# *.json @NethermindEth/devops-team +# *.yml @NethermindEth/devops-team +# *.yaml @NethermindEth/devops-team + +# Source code (customize based on your project structure) +# /src/ @NethermindEth/development-team +# /lib/ @NethermindEth/development-team + +# Tests +# /tests/ @NethermindEth/qa-team +# *.test.* @NethermindEth/qa-team + +# ============================================================================= +# INSTRUCTIONS FOR CUSTOMIZATION +# ============================================================================= +# 1. Uncomment the lines you want to use +# 2. Replace 'your-team-name' with actual team names from your organization +# 3. Add specific paths that match your repository structure +# 4. You can use individual usernames like @username instead of teams +# 5. More specific rules override general ones +# +# Need help? Check the GitHub documentation link above! 🚀 + +# ============================================================================= +# SUGGESTED TEAMS (based on current repository access) +# ============================================================================= +# * @NethermindEth/angkor-admins # admin access +# * @NethermindEth/core-admins # admin access +# * @NethermindEth/core-general # admin access +# * @NethermindEth/role_angkor_admin # admin access +# * @NethermindEth/role_legal_users # pull access +# * @NethermindEth/security-admins # pull access + +# ============================================================================= +# SUGGESTED INDIVIDUALS (based on commit history) +# ============================================================================= +# * @rubo # 18 commits +# * @tkstanczak # 13 commits +# * @benaadams # 11 commits