notify-discord.yml 440 B

12345678910111213141516
  1. name: Discord notification
  2. on:
  3. push:
  4. branches: [master]
  5. jobs:
  6. build:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - name: Discord notification
  10. env:
  11. DISCORD_WEBHOOK: ${{secrets.DISCORD_RELEASE_WEBHOOK}}
  12. DISCORD_EMBEDS:
  13. '[{ "title":"${{github.event.head_commit.message}}", "footer":{"text":"Pushed by ${{github.event.head_commit.author.name}}"} }]'
  14. uses: Ilshidur/action-discord@0.3.2