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 <