Skip to content

💄 댓글다는 부분 scss 변경 #23

💄 댓글다는 부분 scss 변경

💄 댓글다는 부분 scss 변경 #23

Workflow file for this run

name: Slack Alarm
on:
pull_request:
types:
- opened
branches: [ "main", "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: action-slack
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK}}
PR_TITLE: ${{ github.event.pull_request.title }}
PR_BODY: ${{ github.event.pull_request.body }}
PR_USER: ${{ github.event.pull_request.user.login }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: |
curl -X POST -H 'Content-type: application/json' --data '{
"text": "*New Frontend PR!*\n>*Title*: ${PR_TITLE}\n>*User*: ${PR_USER}\n>*URL*: ${PR_URL}\n>*Description*: ${PR_BODY}"
}' $SLACK_WEBHOOK_URL