We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2de02f commit d4aa93dCopy full SHA for d4aa93d
1 file changed
.github/workflows/notify-discord.yml
@@ -8,10 +8,10 @@ on:
8
jobs:
9
notify:
10
runs-on: ubuntu-latest
11
+
12
steps:
- - name: Discord Commits
13
- uses: Sniddl/[email protected]
14
- with:
15
- webhook: ${{ secrets.DISCORD_WEBHOOK }}
16
- template: "avatar-with-link"
17
- include-extras: true
+ - name: Send commit payload to Discord Bot
+ run: |
+ curl -X POST http://${{ secrets.DISCORDBOT }}:3000/github-commits \
+ -H "Content-Type: application/json" \
+ -d '${{ toJson(github.event) }}'
0 commit comments