Skip to content

Commit

Permalink
ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
piyushg-07 committed Jun 6, 2024
1 parent b85db56 commit d9c6f64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/autocomment-issue-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ jobs:
run: |
echo "Sending greeting for issue"
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-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."}' \
-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."}' \
"${{ github.event.issue.url }}/comments"
- name: Send Greeting for Pull Requests
if: github.event_name == 'pull_request_target'
run: |
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."}' \
"${{ github.event.pull_request.url }}/comments"
2 changes: 1 addition & 1 deletion .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Greetings
name: First Greetings

on:
pull_request_target:
Expand Down

0 comments on commit d9c6f64

Please sign in to comment.