From c0f555ca583ab14e20cec1af88eab57fb49f4b56 Mon Sep 17 00:00:00 2001 From: Mahmut Bulut Date: Fri, 27 Dec 2019 20:32:37 +0100 Subject: [PATCH] Discord Integration --- .github/workflows/discord.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/discord.yml diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml new file mode 100644 index 00000000..e37a5f7f --- /dev/null +++ b/.github/workflows/discord.yml @@ -0,0 +1,12 @@ +name: Discord Notification + +on: [pull_request, pull_request_review, pull_request_review_comment, commit_comment, issues, milestone] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Discord Notification + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + uses: Ilshidur/action-discord@master