From f329956f8f6b7a66e0c4d4ceb5ef184eb0b7146d Mon Sep 17 00:00:00 2001 From: Suhani Singh Paliwal <161575955+suhanipaliwal@users.noreply.github.com> Date: Tue, 28 May 2024 22:17:06 +0530 Subject: [PATCH 1/2] Create auto-comment-pr-merge.yml --- .github/workflows/auto-comment-pr-merge.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/auto-comment-pr-merge.yml diff --git a/.github/workflows/auto-comment-pr-merge.yml b/.github/workflows/auto-comment-pr-merge.yml new file mode 100644 index 00000000..f07afe1c --- /dev/null +++ b/.github/workflows/auto-comment-pr-merge.yml @@ -0,0 +1,21 @@ +name: Auto Comment on PR Merge + +on: + pull_request: + types: [closed] + +jobs: + comment: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + + steps: + - name: Add Comment to Merged PR + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + curl -X POST \ + -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + -d '{"body":"🎉 Your pull request has been successfully merged! 🎉 Thank you for your contribution to our project. Your efforts are greatly appreciated. Keep up the fantastic work! 🚀"}' \ + "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments" From a694c73e532c7f31c617669269c6ed638bc0abb3 Mon Sep 17 00:00:00 2001 From: Suhani Singh Paliwal <161575955+suhanipaliwal@users.noreply.github.com> Date: Sun, 16 Jun 2024 23:50:48 +0530 Subject: [PATCH 2/2] Update and rename auto-comment-pr-merge.yml to auto-comment-issue-closed.yml --- .../workflows/auto-comment-issue-closed.yml | 27 +++++++++++++++++++ .github/workflows/auto-comment-pr-merge.yml | 21 --------------- 2 files changed, 27 insertions(+), 21 deletions(-) create mode 100644 .github/workflows/auto-comment-issue-closed.yml delete mode 100644 .github/workflows/auto-comment-pr-merge.yml diff --git a/.github/workflows/auto-comment-issue-closed.yml b/.github/workflows/auto-comment-issue-closed.yml new file mode 100644 index 00000000..009c9181 --- /dev/null +++ b/.github/workflows/auto-comment-issue-closed.yml @@ -0,0 +1,27 @@ +name: Auto Comment on issue + +on: + issues: + types: [closed] + +jobs: + greet-on-close: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Greet User + uses: actions/github-script@v5 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const issue = context.payload.issue; + const issueCreator = issue.user.login; + const issueNumber = issue.number; + const greetingMessage = `Hello @${issueCreator}! Your issue #${issueNumber} has been closed. Thank you for your contribution!`; + github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issueNumber, + body: greetingMessage + }); diff --git a/.github/workflows/auto-comment-pr-merge.yml b/.github/workflows/auto-comment-pr-merge.yml deleted file mode 100644 index f07afe1c..00000000 --- a/.github/workflows/auto-comment-pr-merge.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Auto Comment on PR Merge - -on: - pull_request: - types: [closed] - -jobs: - comment: - if: github.event.pull_request.merged == true - runs-on: ubuntu-latest - - steps: - - name: Add Comment to Merged PR - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - curl -X POST \ - -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - -d '{"body":"🎉 Your pull request has been successfully merged! 🎉 Thank you for your contribution to our project. Your efforts are greatly appreciated. Keep up the fantastic work! 🚀"}' \ - "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"