You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CODEOWNERS 2.2 kB

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

openkf

Contributors (1)