Skip to content

Commit 020729d

Browse files
author
seungwonme
committed
Modified CODEOWNERS
1 parent 0a95d04 commit 020729d

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

Diff for: .github/CODEOWNERS

+26-14
Original file line numberDiff line numberDiff line change
@@ -8,61 +8,73 @@
88
# the repo. Unless a later match takes precedence,
99
# @global-owner1 and @global-owner2 will be requested for
1010
# review when someone opens a pull request.
11-
<!-- * @global-owner1 @global-owner2 -->
11+
12+
# * @global-owner1 @global-owner2
1213

1314
# Order is important; the last matching pattern takes the most
1415
# precedence. When someone opens a pull request that only
1516
# modifies JS files, only @js-owner and not the global
1617
# owner(s) will be requested for a review.
17-
<!-- *.js @js-owner #This is an inline comment. -->
18+
19+
# *.js @js-owner #This is an inline comment.
1820

1921
# You can also use email addresses if you prefer. They'll be
2022
# used to look up users just like we do for commit author
2123
# emails.
22-
<!-- *.go [email protected] -->
24+
25+
2326

2427
# Teams can be specified as code owners as well. Teams should
2528
# be identified in the format @org/team-name. Teams must have
2629
# explicit write access to the repository. In this example,
2730
# the octocats team in the octo-org organization owns all .txt files.
28-
<!-- *.txt @octo-org/octocats -->
31+
32+
# *.txt @octo-org/octocats
2933

3034
# In this example, @doctocat owns any files in the build/logs
3135
# directory at the root of the repository and any of its
3236
# subdirectories.
33-
<!-- /build/logs/ @doctocat -->
37+
38+
# /build/logs/ @doctocat
3439

3540
# The `docs/*` pattern will match files like
3641
# `docs/getting-started.md` but not further nested files like
3742
# `docs/build-app/troubleshooting.md`.
38-
<!-- docs/* [email protected] -->
43+
44+
3945

4046
# In this example, @octocat owns any file in an apps directory
4147
# anywhere in your repository.
42-
<!-- apps/ @octocat -->
48+
49+
# apps/ @octocat
4350

4451
# In this example, @doctocat owns any file in the `/docs`
4552
# directory in the root of your repository and any of its
4653
# subdirectories.
47-
<!-- /docs/ @doctocat -->
54+
55+
# /docs/ @doctocat
4856

4957
# In this example, any change inside the `/scripts` directory
5058
# will require approval from @doctocat or @octocat.
51-
<!-- /scripts/ @doctocat @octocat -->
59+
60+
# /scripts/ @doctocat @octocat
5261

5362
# In this example, @octocat owns any file in a `/logs` directory such as
5463
# `/build/logs`, `/scripts/logs`, and `/deeply/nested/logs`. Any changes
5564
# in a `/logs` directory will require approval from @octocat.
56-
<!-- **/logs @octocat -->
65+
66+
# **/logs @octocat
5767

5868
# In this example, @octocat owns any file in the `/apps`
5969
# directory in the root of your repository except for the `/apps/github`
6070
# subdirectory, as its owners are left empty.
61-
<!-- /apps/ @octocat -->
62-
<!-- /apps/github -->
71+
72+
# /apps/ @octocat
73+
# /apps/github
6374

6475
# In this example, @octocat owns any file in the `/apps`
6576
# directory in the root of your repository except for the `/apps/github`
6677
# subdirectory, as this subdirectory has its own owner @doctocat
67-
<!-- /apps/ @octocat -->
68-
<!-- /apps/github @doctocat -->
78+
79+
# /apps/ @octocat
80+
# /apps/github @doctocat

0 commit comments

Comments
 (0)