Skip to content

[BE] feat: 동시 요청 시 발생할 수 있는 중복 회원 생성 문제 해결 (#443) #198

[BE] feat: 동시 요청 시 발생할 수 있는 중복 회원 생성 문제 해결 (#443)

[BE] feat: 동시 요청 시 발생할 수 있는 중복 회원 생성 문제 해결 (#443) #198

name: Opened PR Notification
on:
pull_request:
branches:
- dev
- main
types:
- opened
jobs:
create-issue:
name: PR opened notification to slack
runs-on: ubuntu-latest
steps:
- name: Send opened PR notification
uses: slackapi/[email protected]
with:
payload: |
{
"text": "*새로운 PR이 생성되었습니다!*",
"attachments": [
{
"color": "#1F7629",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Title*\n<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Base branch*\n${{ github.base_ref }}"
},
{
"type": "mrkdwn",
"text": "*Compare branch*\n${{ github.head_ref }}"
},
{
"type": "mrkdwn",
"text": "*PR number*\n#${{ github.event.pull_request.number }}"
},
{
"type": "mrkdwn",
"text": "*Author*\n${{ github.event.pull_request.user.login }}"
}
]
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_PR_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK