Skip to content

πŸ› [RTY-260010]: [RTY-260010]: trial #4

πŸ› [RTY-260010]: [RTY-260010]: trial

πŸ› [RTY-260010]: [RTY-260010]: trial #4

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: |
console.log(JSON.stringify(context.payload, null, 2));
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'πŸ‘‹ Thanks for reporting!'
})