리뷰 생성 시, 디스코드 알림 #2
Workflow file for this run
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
name: 리뷰 생성 시, 디스코드 알림 | |
on: | |
pull_request_review: | |
types: [submitted] | |
issue_comment: | |
types: [created] | |
env: | |
hwinkr: "@해리" | |
Yoonkyoungme: "@빙봉" | |
hw0603: "@페드로" | |
ikjo39: "@다온" | |
ehBeak: "@배키" | |
seokmyungham: "@재즈" | |
Largopie: "@낙타" | |
seunghye218: "@마크" | |
jobs: | |
notify_review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 새로운 프론트엔드 리뷰가 등록되면 프론트엔드 채널에 디스코드 알림을 보낸다. | |
if: github.event_name == 'pull_request_review' && contains(github.event.pull_request.title, '[FE]') | |
env: | |
FE_DISCORD_WEBHOOK_URL: ${{ secrets.FE_DISCORD_WEBHOOK_URL }} | |
run: | | |
REVIEWER=$(jq -r '.review.user.login' < $GITHUB_EVENT_PATH) | |
REVIEWER_MENTION=$(printenv $REVIEWER) | |
if [ -z "$REVIEWER_MENTION" ]; then | |
REVIEWER_MENTION=$REVIEWER | |
fi | |
REVIEWER_LINK="[${REVIEWER_MENTION}](https://github.com/${REVIEWER})" | |
curl -H "Content-Type: application/json" \ | |
-d "{\"content\": \"💬 ${REVIEWER_LINK}님이 새로운 리뷰를 남겼어요! 리뷰를 반영해 주세요.\n\n🔗 [PR 링크](${{ github.event.pull_request.html_url }})\n📄 **제목**: ${{ github.event.pull_request.title }}\"}" \ | |
$FE_DISCORD_WEBHOOK_URL | |
- name: 새로운 백엔드 리뷰가 등록되면 백엔드 채널에 디스코드 알림을 보낸다. | |
if: github.event_name == 'pull_request_review' && contains(github.event.pull_request.title, '[BE]') | |
env: | |
BE_DISCORD_WEBHOOK_URL: ${{ secrets.BE_DISCORD_WEBHOOK_URL }} | |
run: | | |
REVIEWER=$(jq -r '.review.user.login' < $GITHUB_EVENT_PATH) | |
REVIEWER_MENTION=$(printenv $REVIEWER) | |
if [ -z "$REVIEWER_MENTION" ]; then | |
REVIEWER_MENTION=$REVIEWER | |
fi | |
REVIEWER_LINK="[${REVIEWER_MENTION}](https://github.com/${REVIEWER})" | |
curl -H "Content-Type: application/json" \ | |
-d "{\"content\": \"💬 ${REVIEWER_LINK}님이 새로운 리뷰를 남겼어요! 리뷰를 반영해 주세요.\n\n🔗 [PR 링크](${{ github.event.pull_request.html_url }})\n📄 **제목**: ${{ github.event.pull_request.title }}\"}" \ | |
$BE_DISCORD_WEBHOOK_URL | |
notify_comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 프론트엔드 PR에 코멘트가 등록되면 디스코드 프론트엔드 채널에 알림을 보낸다. | |
if: github.event.issue.pull_request && contains(github.event.issue.title, '[FE]') | |
env: | |
FE_DISCORD_WEBHOOK_URL: ${{ secrets.FE_DISCORD_WEBHOOK_URL }} | |
run: | | |
COMMENTER=$(jq -r '.comment.user.login' < $GITHUB_EVENT_PATH) | |
COMMENTER_MENTION=$(printenv $COMMENTER) | |
if [ -z "$COMMENTER_MENTION" ]; then | |
COMMENTER_MENTION=$COMMENTER | |
fi | |
COMMENTER_LINK="[${COMMENTER_MENTION}](https://github.com/${COMMENTER})" | |
COMMENT=$(jq -r '.comment.body' < $GITHUB_EVENT_PATH) | |
curl -H "Content-Type: application/json" \ | |
-d "{\"content\": \"💬 ${COMMENTER_LINK}님이 새로운 코멘트를 남겼어요!\n\n🔗 [PR 링크](${{ github.event.issue.pull_request.html_url }})\n📄 **제목**: ${{ github.event.issue.title }}\n🗣️ **코멘트 내용**: ${COMMENT}\"}" \ | |
$FE_DISCORD_WEBHOOK_URL | |
- name: 백엔드 PR에 코멘트가 등록되면 디스코드 백엔드 채널에 알림을 보낸다. | |
if: github.event.issue.pull_request && contains(github.event.issue.title, '[BE]') | |
env: | |
BE_DISCORD_WEBHOOK_URL: ${{ secrets.BE_DISCORD_WEBHOOK_URL }} | |
run: | | |
COMMENTER=$(jq -r '.comment.user.login' < $GITHUB_EVENT_PATH) | |
COMMENTER_MENTION=$(printenv $COMMENTER) | |
if [ -z "$COMMENTER_MENTION" ]; then | |
COMMENTER_MENTION=$COMMENTER | |
fi | |
COMMENTER_LINK="[${COMMENTER_MENTION}](https://github.com/${COMMENTER})" | |
COMMENT=$(jq -r '.comment.body' < $GITHUB_EVENT_PATH) | |
curl -H "Content-Type: application/json" \ | |
-d "{\"content\": \"💬 ${COMMENTER_LINK}님이 새로운 코멘트를 남겼어요!\n\n🔗 [PR 링크](${{ github.event.issue.pull_request.html_url }})\n📄 **제목**: ${{ github.event.issue.title }}\n🗣️ **코멘트 내용**: ${COMMENT}\"}" \ | |
$BE_DISCORD_WEBHOOK_URL |