### CODEOWNERS Example Source: https://github.com/chipsalliance/caliptra/blob/main/CaliptraWGTechnicalCharter.md An example of how CODEOWNERS files might be structured for managing repository roles and ownership. ```text # This is an example CODEOWNERS file. # Lines starting with '#' are comments. # Default owner for all files in the repository * @default-owner # Specific owner for documentation files docs/ @docs-team # Specific owner for a particular file src/main.rs @rust-developer # Multiple owners for a directory scripts/ @script-maintainer @ci-bot ```