Echo Pull Request Review Comment #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: Echo Pull Request Review Comment | |
on: | |
pull_request_review_comment: | |
types: [created] | |
jobs: | |
echo-comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo the comment | |
env: | |
MY_SECRET: ${{ secrets.MY_SECRET }} | |
run: | | |
echo "${{ github.event.comment.body }}" | |