fix(home): 릴레이 질문 마지막으로 답변하고 바로 다음 질문 시작할 때 CTA 버튼 카운트 다운으로 보이는 이슈 #224
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: 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" |