mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
errors in a thread, new chatmessage api (#1037)
This commit is contained in:
parent
ef8b97223d
commit
db481311a6
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -e
|
||||
. /home/ubuntu/.bashrc
|
||||
export PATH="/usr/local/bin:/usr/bin:/bin"
|
||||
|
@ -1,11 +1,13 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
. /home/ubuntu/.bashrc
|
||||
export PATH="/usr/local/bin:/usr/bin:/bin"
|
||||
|
||||
ERROR=$(sh ./reload_website.sh 2>&1)
|
||||
ERROR=$(bash ./reload_website.sh 2>&1)
|
||||
|
||||
if ! [ $? -eq 0 ]; then
|
||||
data=$( jo text="$(echo "gradio.app is not tracking master :o: \nError:\n\n\`\`\`'$ERROR'\`\`\`")")
|
||||
echo "$data"
|
||||
curl -X POST -H 'Content-type: application/json' --data "$data" ${SLACK_WEBHOOK}
|
||||
DATA=":x: gradio.app is not tracking main, see the error in the replies :arrow_down: <@${MEMBERID}>"
|
||||
RESPONSE=$(curl https://slack.com/api/chat.postMessage -X POST -H 'Content-type: application/json; charset=utf-8' -H "Authorization: Bearer ${TOKEN}" --data '{"channel":"'${CHANNELID}'", "text":"'"${DATA}"'"}')
|
||||
THREAD_TS="$( jq -r '.ts' <<< "${RESPONSE}")"
|
||||
DATA=$( jo text="$(echo "\`\`\`'$ERROR'\`\`\`")" channel=$CHANNELID thread_ts="'$THREAD_TS'")
|
||||
_=$(curl https://slack.com/api/chat.postMessage -X POST -H 'Content-type: application/json; charset=utf-8' -H "Authorization: Bearer ${TOKEN}" --data "$DATA")
|
||||
fi
|
Loading…
x
Reference in New Issue
Block a user