Skip to content

fix(web-domains): 유저 정보 입력 에러 메시지 추가 #282

fix(web-domains): 유저 정보 입력 에러 메시지 추가

fix(web-domains): 유저 정보 입력 에러 메시지 추가 #282

Workflow file for this run

name: Auto Approve PR
on:
pull_request:
types: [labeled]
jobs:
auto-approve:
if: github.event.label.name == 'auto approve'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Auto approve PR
run: |
PR_NUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
REVIEW_BODY="고생했다. 🎉👍🏽"
curl -s -X POST \
-H "Authorization: token ${{ secrets.ACCESS_TOKEN }}" \
-H "Content-Type: application/json" \
-d "{\"event\":\"APPROVE\", \"body\":\"${REVIEW_BODY}\"}" \
"https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUMBER}/reviews"