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 aec4bd4 commit 46ab5aaCopy full SHA for 46ab5aa
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,16 @@
1
+name: Comment Actions
2
+on:
3
+ issue_comment:
4
+ types: [created]
5
+
6
+jobs:
7
+ triage:
8
+ runs-on: ubuntu-latest
9
+ if: ${{ !startsWith(github.actor, 'eightfoldbot') }}
10
+ steps:
11
+ - name: Log comment info
12
+ run: |
13
+ echo "Comment made by: ${{ github.actor }}"
14
+ echo "Comment ID: ${{ github.event.comment.id }}"
15
+ echo "Issue/PR number: ${{ github.event.issue.number }}"
16
+ echo "Comment body: ${{ github.event.comment.body }}"
0 commit comments