From 426de1054a23af33f10da95a95bf83bb8a077cdc Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Sat, 26 Feb 2022 16:05:42 -0700 Subject: [PATCH] create discord-notifier.yml --- .github/workflows/discord-notifier.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/discord-notifier.yml diff --git a/.github/workflows/discord-notifier.yml b/.github/workflows/discord-notifier.yml new file mode 100644 index 0000000..c76b7ba --- /dev/null +++ b/.github/workflows/discord-notifier.yml @@ -0,0 +1,18 @@ +on: + push: + branches: + - '**' + +name: Discord Notification + +jobs: + notify: + name: Discord Notification + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - uses: fateyan/action-discord-notifier@v1 + with: + message-title: New Commits Pushed + webhook: ${{ secrets.DISCORD_WEBHOOK }}