Skip to content

Commit

Permalink
Autocomment workflow issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vansh-codes committed Oct 7, 2024
1 parent d88078b commit 27cde4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autocomment-iss-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
const issueCreator = issue.user.login;
const issueNumber = issue.number;
const greetingMessage = `Hello @${issueCreator}! Your issue #${issueNumber} ✅ This issue has been successfully closed. Thank you for your contribution and helping us improve the project! If you have any more ideas or run into other issues, feel free to open a new one. Happy coding! 🚀
const greetingMessage = `Hello @${issueCreator}! Your issue #${issueNumber} has been successfully closed. Thank you for your contribution and helping us improve the project! If you have any more ideas or run into other issues, feel free to open a new one. Happy coding! 🚀`;
github.rest.issues.createComment({
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
Expand Down

0 comments on commit 27cde4e

Please sign in to comment.