PR_review #13
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: PR_review | |
on: | |
pull_request_review: | |
types: [submitted, edited] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Debug | |
run: | | |
echo ${{ github.event_name }} | |
echo ${{ github.ref }} | |
echo ${{ github.event.pull_request.head.ref }} | |
echo ${{ github.event.pull_request.base.ref }} | |
echo "Review State: ${{ github.event.review.state }}" | |
echo "Review Body: ${{ github.event.review.body }}" | |
echo "Review Changes: ${{ toJson(github.event.changes) }}" | |
echo "Review Event: ${{ toJson(github.event.review) }}" | |
echo "Changes Event: ${{ toJson(github.event.changes) }}" | |
echo "Complete Event: ${{ toJson(github.event) }}" |