-
Notifications
You must be signed in to change notification settings - Fork 20
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
workspace: add CODEOWNERS
#331
base: main
Are you sure you want to change the base?
Conversation
CODEOWNERS
Outdated
# Default owner(s) of all code. | ||
* @Boog900 @hinto-janai |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ordering matters, @Boog900 will appear at the top in the reviewers list and so-on.
CODEOWNERS
Outdated
# hinto-janai | ||
/benches/** @hinto-janai |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the last matching pattern takes the most precedence
In this case, changes to /benches
will tag @hinto-janai first then everyone else (including everyone in *
). I added myself for things I want to review.
Other notes:
- Users listed here must have write access (I tried adding @dimalinux for
cryptonight/
although it doesn't work) - @SyntheticBird45 I did not add you in
*
because every PR will tag you for review (and spam your email/notifications), did you want to be in this group or otherpaths/
?
@Boog900 you need to enable the codeowner ruleset for main
:
Cuprate/cuprate
Settings
Code and automation
Rulesets
Require a pull request before merging
Require review from Code Owners
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hinto-janai I'm already registered to any changes in the repository and receive mails accordingly. You can add me to it
What
Adds a
CODEOWNERS
file to the repo, see here for more documentation: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.Why