testing if this works

This commit is contained in:
Steve Dogiakos 2022-02-26 16:24:11 -07:00
parent d3bb658d6a
commit d6420c7dc3

View File

@ -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