CODEOWNERS 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # These owners will be the default owners for everything in
  2. # the repo. Unless a later match takes precedence,
  3. # @global-owner1 and @global-owner2 will be requested for
  4. # review when someone opens a pull request.
  5. * @migueldeicaza @tig
  6. # Order is important; the last matching pattern takes the most
  7. # precedence. When someone opens a pull request that only
  8. # modifies JS files, only @js-owner and not the global
  9. # owner(s) will be requested for a review.
  10. #*.js @js-owner
  11. # You can also use email addresses if you prefer. They'll be
  12. # used to look up users just like we do for commit author
  13. # emails.
  14. #*.go [email protected]
  15. # Teams can be specified as code owners as well. Teams should
  16. # be identified in the format @org/team-name. Teams must have
  17. # explicit write access to the repository. In this example,
  18. # the octocats team in the octo-org organization owns all .txt files.
  19. #*.txt @octo-org/octocats
  20. # In this example, @doctocat owns any files in the build/logs
  21. # directory at the root of the repository and any of its
  22. # subdirectories.
  23. #/build/logs/ @doctocat
  24. # The `docs/*` pattern will match files like
  25. # `docs/getting-started.md` but not further nested files like
  26. # `docs/build-app/troubleshooting.md`.
  27. #docs/* [email protected]
  28. # In this example, @octocat owns any file in an apps directory
  29. # anywhere in your repository.
  30. #apps/ @octocat
  31. # In this example, @doctocat owns any file in the `/docs`
  32. # directory in the root of your repository and any of its
  33. # subdirectories.
  34. #/docs/ @doctocat
  35. # In this example, any change inside the `/scripts` directory
  36. # will require approval from @doctocat or @octocat.
  37. #/scripts/ @doctocat @octocat
  38. # In this example, @octocat owns any file in the `/apps`
  39. # directory in the root of your repository except for the `/apps/github`
  40. # subdirectory, as its owners are left empty.
  41. #/apps/ @octocat
  42. #/apps/github