Crashes randomaly #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-Reply to Issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
auto-reply: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Reply to issue | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const issueComment = `Thanks for using our software! We will look into and fix your issue asap also, if CS2 was recently updated wait for an up-to-date fix, cuz often game updates break cheats.`; | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: issueComment | |
}); | |
github.rest.issues.update({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['new'] | |
}); |