Skip to content

Test issue comments #30

Test issue comments

Test issue comments #30

Workflow file for this run

name: "Test Actions Events"
on:
pull_request_review:
types: [submitted]
jobs:
execute:
runs-on: ubuntu-latest
if: github.event.review.state == 'APPROVED'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Echo PR number
run: echo "PR number is ${{ github.event.issue.number }}"
- name: Echo PR title
run: echo "PR title is ${{ github.event.issue.title }}"