From cbfe36447574ee8d6b8cae94e1855edcb379f18b Mon Sep 17 00:00:00 2001 From: Naren Rohan <100507962+nroh555@users.noreply.github.com> Date: Thu, 29 Feb 2024 23:01:45 +1300 Subject: [PATCH] Create notification.yml --- .github/workflows/notification.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/notification.yml diff --git a/.github/workflows/notification.yml b/.github/workflows/notification.yml new file mode 100644 index 000000000..7ef6e42fd --- /dev/null +++ b/.github/workflows/notification.yml @@ -0,0 +1,26 @@ +name: Pull Request Notifications + +on: + pull_request: + types: [opened, reopened, closed] + +jobs: + pull_request_created: + if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'reopened' + runs-on: ubuntu-latest + steps: + - name: Discord Webhook Action + uses: tsickert/discord-webhook@v5.3.0 + with: + webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} + content: "Pull request opened: ${{ github.event.pull_request.title }} | Link: [View Pull Request](${{ github.event.pull_request.html_url }})" + + pull_request_merged: + if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true + runs-on: ubuntu-latest + steps: + - name: Discord Webhook Action + uses: tsickert/discord-webhook@v5.3.0 + with: + webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} + content: "Pull request merged: ${{ github.event.pull_request.title }}"