From 51b31875bc6a8b72e34b4b04cc887dca0eff5534 Mon Sep 17 00:00:00 2001 From: Mrinank Bhowmick <77621953+Mrinank-Bhowmick@users.noreply.github.com> Date: Sun, 10 Sep 2023 14:19:49 +0530 Subject: [PATCH] Update comment_on_pr.yml --- .github/workflows/comment_on_pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/comment_on_pr.yml b/.github/workflows/comment_on_pr.yml index 06d014d1..423259b3 100644 --- a/.github/workflows/comment_on_pr.yml +++ b/.github/workflows/comment_on_pr.yml @@ -9,9 +9,9 @@ jobs: - uses: actions/github-script@v6 with: script: | - github.rest.issues.createComment({ + github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: 'Greetings! This is an automated message from GitHub Actions. :robot: Your pull request has been received and is awaiting review by the repository owner or a maintainer. This may take some time, so please be patient. While you wait, you can continue to work on other issues or pull requests, or explore the project further. Or you can simply relax and enjoy your day. Thank you for your contribution to this project! You are awesome! :star:' + body: 'Greetings! This is an automated message from GitHub Actions. :robot:\nYour pull request has been received and is awaiting review by the repository owner or a maintainer. This may take some time, so please be patient.\nWhile you wait, you can continue to work on other issues or pull requests, or explore the project further. Or you can simply relax and enjoy your day.\nThank you for your contribution to this project! You are awesome! :star:' })