chore(cli): add ilitteri to CODEOWNERS#65
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds @ilitteri as a codeowner to the repository by modifying the .github/CODEOWNERS file. However, the CODEOWNERS file is using an incorrect format with list-style dashes, which won't be recognized by GitHub's CODEOWNERS functionality.
Changes:
- Add @ilitteri to the CODEOWNERS file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - @lambdaclass/lambda-execution-reviewers | ||
| - @ilitteri |
There was a problem hiding this comment.
The CODEOWNERS file format appears to be incorrect. GitHub CODEOWNERS files don't use list syntax with dashes. The correct format should be:
# Lambdaclass core team
* @lambdaclass/lambda-execution-reviewers @ilitteri
Or if you want separate lines for different owners:
# Lambdaclass core team
* @lambdaclass/lambda-execution-reviewers
* @ilitteri
Without the dashes, and with file patterns (like * for all files). The current format with dashes won't be recognized by GitHub's CODEOWNERS functionality.
| - @lambdaclass/lambda-execution-reviewers | |
| - @ilitteri | |
| * @lambdaclass/lambda-execution-reviewers @ilitteri |
Summary