Skip to content

Commit 41a68b6

Browse files
committed
modify CODEOWNERS
1 parent 0e25aff commit 41a68b6

File tree

4 files changed

+26
-20
lines changed

4 files changed

+26
-20
lines changed

.github/CODEOWNERS

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
1-
# This is a GitHub CODEOWNERS file, not a Dockerfile
2-
# GitHub CODEOWNERSファイルです(Dockerfileではありません)
3-
# Global code owners
4-
# すべてのファイルのデフォルトオーナー
5-
* @hackdays-io/frontend-team
1+
* @yosukemiyata
2+
/src/ @yosukemiyata
3+
/public/ @yosukemiyata
4+
# # This is a GitHub CODEOWNERS file, not a Dockerfile
5+
# # GitHub CODEOWNERSファイルです(Dockerfileではありません)
6+
# # Global code owners
7+
# # すべてのファイルのデフォルトオーナー
8+
# * @hackdays-io/frontend-team
69

7-
# Frontend specific areas
8-
/src/components/ @hackdays-io/frontend-team
9-
/src/pages/ @hackdays-io/frontend-team
10-
/src/themes/ @hackdays-io/frontend-team
10+
# # Frontend specific areas
11+
# /src/components/ @hackdays-io/frontend-team
12+
# /src/pages/ @hackdays-io/frontend-team
13+
# /src/themes/ @hackdays-io/frontend-team
1114

12-
# Configuration files
13-
package.json @hackdays-io/devops-team
14-
yarn.lock @hackdays-io/devops-team
15-
tsconfig.json @hackdays-io/frontend-team
16-
next.config.ts @hackdays-io/frontend-team
17-
biome.json @hackdays-io/frontend-team
15+
# # Configuration files
16+
# package.json @hackdays-io/devops-team
17+
# yarn.lock @hackdays-io/devops-team
18+
# tsconfig.json @hackdays-io/frontend-team
19+
# next.config.ts @hackdays-io/frontend-team
20+
# biome.json @hackdays-io/frontend-team
1821

19-
# GitHub workflows and templates
20-
/.github/ @hackdays-io/devops-team
22+
# # GitHub workflows and templates
23+
# /.github/ @hackdays-io/devops-team
2124

22-
# Documentation
23-
README.md @hackdays-io/frontend-team
24-
*.md @hackdays-io/frontend-team
25+
# # Documentation
26+
# README.md @hackdays-io/frontend-team
27+
# *.md @hackdays-io/frontend-team

src/pages/_app.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ import type { AppProps } from "next/app";
33
export default function App({ Component, pageProps }: AppProps) {
44
return <Component {...pageProps} />;
55
}
6+

src/pages/_document.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ export default function Document() {
1111
</Html>
1212
);
1313
}
14+

src/pages/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ export default function Home() {
2323
</div>
2424
);
2525
}
26+

0 commit comments

Comments
 (0)