diff --git a/.github/workflows/autocomment-issue-pr.yml b/.github/workflows/autocomment-issue-pr.yml index 47c9a2c..9d66950 100644 --- a/.github/workflows/autocomment-issue-pr.yml +++ b/.github/workflows/autocomment-issue-pr.yml @@ -19,7 +19,7 @@ jobs: echo "Sending greeting for issue" curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ -H "Content-Type: application/json" \ - -d '{"body":"Thank you๐ŸŽ‰, @${{ github.actor }}! for creating this issue! We\'ll look into it as soon as possible. In the meantime, Your contribution is greatly appreciated, and we look forward to collaborating with you to resolve it. Keep up the great work! We will review your changes promptly and provide feedback. Please remember to check our documentation and guidelines."}' \ + -d "{\"body\":\"Thank you๐ŸŽ‰, @${{ github.actor }}! for creating this issue! We'll look into it as soon as possible. In the meantime, Your contribution is greatly appreciated, and we look forward to collaborating with you to resolve it. Keep up the great work! We will review your changes promptly and provide feedback. Please remember to check our documentation and guidelines.\"}" \ "${{ github.event.issue.url }}/comments" - name: Send Greeting for Pull Requests @@ -28,5 +28,5 @@ jobs: echo "Sending greeting for pull request" curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ -H "Content-Type: application/json" \ - -d '{"body":"Excellent work๐Ÿš€๐Ÿš€, @${{ github.actor }}! Thank you for submitting your pull request. Your contribution is valuable, and we appreciate your efforts to improve our project. We will review your changes promptly and provide feedback. Keep up the excellent work! Please remember to check our documentation and guidelines."}' \ + -d "{\"body\":\"Excellent work๐Ÿš€๐Ÿš€, @${{ github.actor }}! Thank you for submitting your pull request. Your contribution is valuable, and we appreciate your efforts to improve our project. We will review your changes promptly and provide feedback. Keep up the excellent work! Please remember to check our documentation and guidelines.\"}" \ "${{ github.event.pull_request.url }}/comments"