Skip to content

comment on PR

comment on PR #7

Workflow file for this run

name: Comment
on:
# Trigger the workflow on push or pull request
pull_request:
branches:
- master
- develop
- main
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for reporting! ${{ github.actor }}'
})