entro
entro copied to clipboard
Add CODEOWNERS file
📋 Add CODEOWNERS File
This PR adds a CODEOWNERS file template to help manage code ownership and review requirements.
🎯 What is CODEOWNERS?
The CODEOWNERS file defines who is responsible for code in this repository. When someone opens a pull request, the defined code owners are automatically requested for review.
✏️ How to customize this file:
- For team ownership: Use
@NethermindEth/team-name - For individual ownership: Use
@username - For specific paths: Add patterns like
docs/ @NethermindEth/docs-team
📖 Examples:
# Global owners (will be requested for all PRs)
* @NethermindEth/core-team
# Specific directory owners
/docs/ @NethermindEth/docs-team
/src/ @NethermindEth/development-team
*.md @NethermindEth/docs-team
# Individual file owners
package.json @username
README.md @NethermindEth/docs-team @username
🔗 Learn more:
Please review and update the CODEOWNERS file according to your team's needs before merging! 🚀