Skip to content

Commit

Permalink
Empty implementation of the comment action (infra) (#1465)
Browse files Browse the repository at this point in the history
test
  • Loading branch information
Hook25 authored Sep 11, 2024
1 parent da49281 commit 47e88e4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/dispatch_lab_job.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Run Workflow on PR Comment
on:
issue_comment:
types: [created]

jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Dispatch test in the lab and monitor it
if: ${{ contains(github.event.comment.body, '/lab') && github.event.issue.pull_request && github.event.issue.author_association == "MEMBER" }}
run:
COMMENT_BODY="${{ github.event.comment.body }}"
echo $COMMENT_BODY

0 comments on commit 47e88e4

Please sign in to comment.