-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into team4/cham0287
- Loading branch information
Showing
52 changed files
with
4,169 additions
and
6,535 deletions.
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,50 @@ | ||
name: Review Assign | ||
|
||
on: | ||
pull_request: | ||
types: [opened, ready_for_review] | ||
|
||
jobs: | ||
assign: | ||
permissions: | ||
actions: write | ||
checks: write | ||
contents: write | ||
deployments: write | ||
discussions: write | ||
issues: write | ||
id-token: read | ||
packages: write | ||
pages: write | ||
pull-requests: write | ||
repository-projects: write | ||
security-events: write | ||
statuses: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- if: github.base_ref == 'main' # base branch name is 'master' | ||
run: echo REVIEWERS=inseong-so >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team1') | ||
run: echo REVIEWERS=headring, KimHunJin, hyjoong her0707 >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team2') | ||
run: echo REVIEWERS=Bsfla, SeolJaeHyeok, choisy9619, kyung-jun >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team3') | ||
run: echo REVIEWERS=sgsg9447, kingyong9169, 2dowon, jqkk >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team4') | ||
run: echo REVIEWERS=kimseongchan-kr, cham0287, hyeon9782 >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team5') | ||
run: echo REVIEWERS=2-NOW, hyew-kim, geeonie >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team6') | ||
run: echo REVIEWERS=areumsheep, ludacirs, innocarpe >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team7') | ||
run: echo REVIEWERS=endmoseung, steven-yn, ding-co, mandarin-sep >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team8') | ||
run: echo REVIEWERS=HOJOON07, jiji-hoon96, 71summernight, seung-wan >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team9') | ||
run: echo REVIEWERS=Siihyun, hhhminme, 0uizi0, brgndyy >> $GITHUB_ENV | ||
- if: startsWith(github.base_ref, 'team10') | ||
run: echo REVIEWERS=Leejha, steadily-worked >> $GITHUB_ENV | ||
- uses: hkusu/review-assign-action@v1 | ||
with: | ||
assignees: ${{ github.actor }} | ||
reviewers: ${{ env.REVIEWERS }} |
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,11 @@ | ||
const { createVanillaExtractPlugin } = require("@vanilla-extract/next-plugin"); | ||
const withVanillaExtract = createVanillaExtractPlugin(); | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
images: { | ||
domains: ["api.realworld.io"], | ||
}, | ||
}; | ||
|
||
module.exports = withVanillaExtract(nextConfig); |
Oops, something went wrong.