Files
EasyLauncher/.github/workflows/thank-you-issue_ci.yml
github-tty ea4fb5c670 Update GitHub Action Versions (#86)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-05 16:35:12 +00:00

24 lines
572 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.`
})