We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bea0b0 commit bc95edeCopy full SHA for bc95ede
2 files changed
.github/workflows/discord-notify.yml
@@ -0,0 +1,16 @@
1
+name: Discord Notification
2
+on: push # Triggers on every push
3
+jobs:
4
+ notify:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Send Discord Notification
8
+ uses: Ilshidur/action-discord@master
9
+ with:
10
+ args: |
11
+ **New commit in ${{ github.repository }}**
12
+ > **Author:** ${{ github.actor }}
13
+ > **Message:** ${{ github.event.head_commit.message }}
14
+ > [View Commit](${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }})
15
+ env:
16
+ DISCORD_WEBHOOK: ${{ https://discord.com/api/webhooks/1402231972364812308/Jjq_sle0vM96bPCo5aW3y8WkKDY4gJdd71zObPLoPcXXiWQxfSom1ISow7rpaU4JxeIN }}
.github/workflows/discord.yml
0 commit comments