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:' })