Skip to content

Commit 46ab5aa

Browse files
Create test.yml
1 parent aec4bd4 commit 46ab5aa

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)