Skip to content

Commit

Permalink
Merge pull request #9 from vansh-codes/workflow
Browse files Browse the repository at this point in the history
Autocomment workflow issue fix
  • Loading branch information
vansh-codes authored Oct 7, 2024
2 parents d88078b + 27cde4e commit ee22864
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 ee22864

Please sign in to comment.