Skip to content

Commit c04b657

Browse files
authored
Update greetings.yml
1 parent 20fa552 commit c04b657

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/greetings.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@ jobs:
2222
- name: Congratulate on PR Merge
2323
if: github.event.action == 'closed' && github.event.pull_request.merged == true
2424
run: |
25-
echo "🎉 Congratulations @${{ github.event.pull_request.user.login }}! Your PR has been merged!"
26-
echo "⭐ If you enjoyed contributing, please consider giving us a star on GitHub and following us for updates!"
25+
curl -X POST \
26+
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
27+
-H "Accept: application/vnd.github.v3+json" \
28+
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments \
29+
-d '{"body": "🎉 Congratulations @'${{ github.event.pull_request.user.login }}'! Your PR has been merged! ⭐ If you enjoyed contributing, please consider giving us a star on GitHub and following us for updates!"}'

0 commit comments

Comments
 (0)