From a4d8bc0160a14460b79e1162b9ebbf61ae69f9e8 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Sat, 26 Feb 2022 16:01:23 -0700 Subject: [PATCH] createa discord-notifier.yml, trying discord_webhook variable --- .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 }}