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 d5a665c commit 1208926Copy full SHA for 1208926
.github/workflows/on-issue-comment.yml
@@ -10,10 +10,12 @@ jobs:
10
permissions: write-all
11
steps:
12
- name: Delete comment
13
- run: |
14
- echo " ${{ github.event.comment.body }} "
15
- - uses: actions-cool/issues-helper@v3
+ uses: actions-cool/issues-helper@v3
16
with:
17
actions: 'delete-comment'
18
token: ${{ secrets.GITHUB_TOKEN }}
19
- comment-id: ${{ github.event.comment.id }}
+ comment-id: ${{ github.event.comment.id }}
+ env:
+ BODY: ${{ github.event.comment.body }}
20
+ run: |
21
+ echo " $BODY "
0 commit comments