Skip to content

test PR

test PR #29

Workflow file for this run

name: "Test issue comments"
on:
issue_comment:
types: [created]
jobs:
execute:
runs-on: ubuntu-latest
if: github.event.issue.pull_request
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 }}"