Skip to content

test 4

test 4 #4

Workflow file for this run

name: Comment on New Issues
on:
issues:
types: [opened]
permissions:
issues: write
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Comment on the issue
uses: actions/github-script@v6
with:
script: |
const issueComment = "Thank you for opening this issue! We will look into it shortly.";
await github.rest.issues.createComment({
...context.repo,
issue_number: context.issue.number,
body: issueComment
});