From d6420c7dc375ca9ab9b489d54085670d8a8f5463 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Sat, 26 Feb 2022 16:24:11 -0700 Subject: [PATCH] testing if this works --- .github/workflows/discord-commits.yml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/workflows/discord-commits.yml b/.github/workflows/discord-commits.yml index 454f209..c76b7ba 100644 --- a/.github/workflows/discord-commits.yml +++ b/.github/workflows/discord-commits.yml @@ -1,7 +1,18 @@ -- name: Discord Commits - uses: Sniddl/discord-commits@v1.3 +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 }} - message: "Successful commit to **{{ github.context.payload.repository.owner.name }}/{{ github.context.payload.repository.name}}**.\nDiff: {{ github.context.payload.compare }}" - embed: '{ "title": "{{ commit.title }}", "description": "{{ commit.description }}", "url": "{{ commit.url }}", "author": { "name": "{{ commit.author.name }} ({{ commit.author.username }})", "icon_url": "https://avatars.io/gravatar/{{ commit.author.email }}"} }' - last-commit-only: false