PR comment github action tests #85
Workflow file for this run
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: PR comment github action tests | |
on: | |
pull_request_review_comment: | |
types: [created] | |
jobs: | |
get-pr-number: | |
runs-on: ubuntu-22.04 | |
name: Get PR number | |
steps: | |
- name: Get PR number | |
shell: bash | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
run: | | |
echo "$PR_NUMBER" |