We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a41a28 commit 22f1cc5Copy full SHA for 22f1cc5
.github/workflows/discord.yml
@@ -16,6 +16,16 @@ jobs:
16
# Use \n inside the string; jq will escape correctly
17
echo "MSG=✅ Push to **${REPO}** on **${BRANCH}** by **${ACTOR}**\n${URL}" >> $GITHUB_ENV
18
19
+ # 🔎 DEBUG STEP (insert here)
20
+ - name: Minimal test to Discord
21
+ env:
22
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
23
+ run: |
24
+ echo "Testing webhook with a simple message..."
25
+ curl -i -H "Content-Type: application/json" \
26
+ -d '{"content":"Hello from GitHub Actions 👋"}' \
27
+ "$DISCORD_WEBHOOK"
28
+
29
- name: Send to Discord
30
env:
31
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
0 commit comments