|
| 1 | +# See GitHub documentation: |
| 2 | +# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners |
| 3 | + |
| 4 | +# This is a comment. |
| 5 | +# Each line is a file pattern followed by one or more owners. |
| 6 | + |
| 7 | +# These owners will be the default owners for everything in |
| 8 | +# the repo. Unless a later match takes precedence, |
| 9 | +# @global-owner1 and @global-owner2 will be requested for |
| 10 | +# review when someone opens a pull request. |
| 11 | +* @lenucksi @nyeates @gruetter @NewMexicoKid @cewilliams |
| 12 | + |
| 13 | +# Order is important; the last matching pattern takes the most |
| 14 | +# precedence. When someone opens a pull request that only |
| 15 | +# modifies JS files, only @js-owner and not the global |
| 16 | +# owner(s) will be requested for a review. |
| 17 | +# *.js @js-owner |
| 18 | + |
| 19 | +# You can also use email addresses if you prefer. They'll be |
| 20 | +# used to look up users just like we do for commit author |
| 21 | +# emails. |
| 22 | + |
| 23 | + |
| 24 | +# In this example, @doctocat owns any files in the build/logs |
| 25 | +# directory at the root of the repository and any of its |
| 26 | +# subdirectories. |
| 27 | +# /build/logs/ @doctocat |
| 28 | + |
| 29 | +# The `docs/*` pattern will match files like |
| 30 | +# `docs/getting-started.md` but not further nested files like |
| 31 | +# `docs/build-app/troubleshooting.md`. |
| 32 | + |
| 33 | + |
| 34 | +# In this example, @octocat owns any file in an apps directory |
| 35 | +# anywhere in your repository. |
| 36 | +# apps/ @octocat |
| 37 | + |
| 38 | +# In this example, @doctocat owns any file in the `/docs` |
| 39 | +# directory in the root of your repository. |
| 40 | +# /docs/ @doctocat |
0 commit comments