Dad Joke #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment Triggered Workflow | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
my-comment-job: | |
runs-on: ubuntu-latest | |
if: github.event.issue.pull_request | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Echo comment body | |
run : | | |
echo "Comment body: ${{ github.event.comment.body }}" | |
echo "This workflow was successfully triggered by a comment on a pull request" |