Files
EasyLauncher/.github/workflows/thank-you-issue_ci.yml
HeCodes2Much 43c51a9e35 Refactor: Cleanup workflow files
Signed-off-by: HeCodes2Much <wayne6324@gmail.com>
2024-07-09 12:39:17 +01:00

25 lines
585 B
YAML

name: Thank New Reporters
on:
issues:
types:
- reopened
- opened
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7.0.1
with:
github-token: ${{ secrets.GIT_BOT_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.`
})