feat: 서브 타이틀 반영 #281
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" |