From f1e598b0b65bf8b38d170babd54aa32a5b870ed9 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 8 Jan 2020 13:05:22 -0800 Subject: [PATCH] Adds GitHub Action to post to Discord --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..92587e47 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Post Commit to Discord + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Discord notification + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + DISCORD_USERNAME: AltBot + uses: Ilshidur/action-discord@c7b60ec