Files
EasyLauncher/.github/workflows/thank-you-issue_ci.yml
HᴇCᴏᴅᴇs2ᴍᴜᴄʜ 1afc0219ae Update thank-you-issue_ci.yml
Signed-off-by: HᴇCᴏᴅᴇs2ᴍᴜᴄʜ <wayne6324@gmail.com>
2024-12-03 09:36:51 +00:00

24 lines
567 B
YAML

name: Thank New Reporters
on:
issues:
types:
- opened
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `👋 Thanks for reporting!
We will get back to you soon about this issue.`
})