notify-discord.yml 461 B

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