-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50ecb1a
commit 98cac96
Showing
3 changed files
with
52 additions
and
109 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,39 @@ | ||
name: PR Slack Notification | ||
|
||
on: | ||
pull_request: | ||
types: [review_requested] | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Notify Slack | ||
uses: ./ | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
slack_token: ${{ secrets.SLACK_BOT_ACCESS_TOKEN }} | ||
slack_channel: C079A5A8BL0 | ||
slack_workspace: 'DEPROMEET 15th' | ||
reviewers_file: .github/workflows/reviewers.yml | ||
slack_merge_emoji_name: check |
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,13 @@ | ||
reviewers: | ||
- githubName: Doeunnkimm | ||
slackId: U07600UQG3T | ||
name: WEB_김도은 | ||
- githubName: semnil5202 | ||
slackId: U075KR29RGR | ||
name: Web_이세민 | ||
- githubName: LeeJeongHooo | ||
slackId: U075C1A16LT | ||
name: Web_이정호 | ||
- githubName: Andrevile | ||
slackId: U07545VMS21 | ||
name: Web_장종오 |
This file was deleted.
Oops, something went wrong.