We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6143c6d commit 0797e68Copy full SHA for 0797e68
.github/workflows/checklist.yml
@@ -15,7 +15,11 @@ jobs:
15
body="${body//$'\r'/'%0D'}"
16
echo ::set-output name=body::$body
17
- name: Print Comment ID
18
- run: echo ${{ github.event.pull_request.comments[0].id }}
+ run: |
19
+ echo ${{ github.event.pull_request }}
20
+ echo ${{ github.event.pull_request.comments }}
21
+ echo ${{ github.event.pull_request.comments[0] }}
22
+ echo ${{ github.event.pull_request.comments[0].id }}
23
- name: Update comment
24
# if: github.event.action == 'opened'
25
uses: peter-evans/create-or-update-comment@v1
0 commit comments