Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(*): pr-slack-noti workflow #28

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/user-mapping.json

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/pr-slack-noti.yml
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
13 changes: 13 additions & 0 deletions .github/workflows/reviewers.yml
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_์žฅ์ข…์˜ค
109 changes: 0 additions & 109 deletions .github/workflows/slack-notify.yml

This file was deleted.