aboutsummaryrefslogtreecommitdiffstats
path: root/.github/webhook.sh
blob: 70a219c91b48487f043b12d25627830a029a055f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

# Report unnamed symbols
content="$(tools/unnamed.py -r . pokeyellow.sym | head)"

curl -H 'Content-Type: application/json' -X POST "$DISCORD_WEBHOOK_URL" -d@- << EOF
{
    "username": "OK",
    "avatar_url": "https://i.imgur.com/38BQHdd.png",
    "content": "\`\`\`$(echo "$content" | sed -E ':a;N;$!ba;s/\r{0,1}\n/\\n/g')\`\`\`"
}
EOF