-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 리뷰어 및 담당자 자동화 파이프라인 구축 * feat: pennyway 색상표 적용 * feat: reviewers 명시 및 auto-assign-action 버전 업데이트 reviewers에 프론트 팀원 모두가 적용되지 않는 문제가 있어 reviewers를 명시하였습니다. * feat: numberOfReviewers 명시 리뷰어의 수를 명시해주지 않으면 1명만 등록되는 문제가 있어 0으로 명시하였습니다.
- Loading branch information
Showing
4 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
addAssignees: author | ||
addReviewers: true | ||
|
||
numberOfReviewers: 0 | ||
reviewers: | ||
- Legitgoons | ||
- BangDori | ||
- suhwan2004 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: pr-auto-assign | ||
on: | ||
pull_request: | ||
types: [opened, ready_for_review] | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
jobs: | ||
add-reviewers-and-assignee: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/[email protected] | ||
with: | ||
repo-token: '${{ secrets.GITHUB_TOKEN }}' | ||
configuration-path: '.github/AUTO_ASSIGN_CONFIG.yml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
export default function Home() { | ||
return <div className=" text-h1b">Hello World</div>; | ||
return ( | ||
<div className="flex flex-row justify-center gap-12 bg-[#666666]"> | ||
<div className="w-72"> | ||
<p className="bg-white text-black">White</p> | ||
<p className="bg-gray01 text-black">Gray 01</p> | ||
<p className="bg-gray02 text-black">Gray 02</p> | ||
<p className="bg-gray03 text-black">Gray 03</p> | ||
<p className="bg-gray04 text-black">Gray 04</p> | ||
<p className="bg-gray05 text-black">Gray 05</p> | ||
<p className="bg-gray06 text-black">Gray 06</p> | ||
<p className="bg-gray07 text-white">Gray 07</p> | ||
</div> | ||
|
||
<div className="w-72"> | ||
<p className="bg-red01 text-black">Red 01</p> | ||
<p className="bg-red02 text-black">Red 02</p> | ||
<p className="bg-red03 text-black">Red 03</p> | ||
|
||
<div className="h-6" /> | ||
|
||
<p className="bg-yellow01 text-black">Yellow 01</p> | ||
<p className="bg-yellow02 text-black">Yellow 02</p> | ||
</div> | ||
|
||
<div className="w-72"> | ||
<p className="bg-ashblue01 text-black">Ashblue 01</p> | ||
<p className="bg-ashblue02 text-black">Ashblue 02</p> | ||
<p className="bg-overlay text-white">Overlay</p> | ||
|
||
<div className="h-6" /> | ||
|
||
<p className="bg-mint01 text-black">Mint 01</p> | ||
<p className="bg-mint02 text-black">Mint 02</p> | ||
<p className="bg-mint03 text-black">Mint 03</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters