Skip to content

Comment on the Issue #3

Comment on the Issue

Comment on the Issue #3

name: "Comment on New Issue"
on:
issues:
types: [opened]
workflow_dispatch:
permissions:
issues: write
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.createComment({
issue_number: context.payload.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for reporting!'
})