Update wfgy-auto-reply.yml

This commit is contained in:
PSBigBig + MiniPS 2026-03-08 16:43:18 +08:00 committed by GitHub
parent 18c286de2d
commit 0b72127811
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,20 +15,11 @@ jobs:
uses: actions/github-script@v7
with:
script: |
const body = `
Thanks for opening this issue.
PSBigBig is currently somewhere thinking about life, the universe, and possibly debugging the meaning of existence.
Your issue has been recorded.
He will take a look when he returns to this dimension.
Thanks again for contributing to the project.
`;
const body = "Thanks for opening this issue.\n\nPSBigBig is currently somewhere thinking about life, the universe, and possibly debugging the meaning of existence.\n\nYour issue has been recorded. He will take a look when he returns.\n\nThanks again for contributing.";
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: body
});