From 9e2a8a364dba1915bd710d001c1dd109870526e7 Mon Sep 17 00:00:00 2001 From: Siddheya Kulkarni <115717746+Asymtode712@users.noreply.github.com> Date: Sat, 25 May 2024 12:02:14 +0530 Subject: [PATCH] Update autocomment-pr-merge.yml --- .github/workflows/autocomment-pr-merge.yml | 30 +++++++++++++++++----- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/.github/workflows/autocomment-pr-merge.yml b/.github/workflows/autocomment-pr-merge.yml index 373f9d0..9398eeb 100644 --- a/.github/workflows/autocomment-pr-merge.yml +++ b/.github/workflows/autocomment-pr-merge.yml @@ -4,17 +4,33 @@ on: pull_request: types: [closed] +permissions: + issues: write + pull-requests: write + jobs: - notify: - if: github.event.pull_request.merged == true + comment: runs-on: ubuntu-latest + permissions: + pull-requests: write + if: github.event.pull_request.merged == true steps: - - name: Post merge comment + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Add Comment to Issue env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - curl -H "Authorization: token $GITHUB_TOKEN" \ - -X POST \ - -d '{"body":"🎉 Your pull request has been successfully merged! 🎉 Thank you for your valuable contribution to our project. Your efforts are greatly appreciated. Feel free to reach out if you have any more contributions or if there's anything else we can assist you with. Keep up the fantastic work! 🚀"}' \ - "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments" + COMMENT=$(cat <