CODEOWNERS 1.8 KB

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