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 7abb716 commit e630493Copy full SHA for e630493
entrypoint.sh
@@ -143,16 +143,16 @@ response=$(curl $options \
143
-H "X-GitHub-Event: $EVENT_NAME" \
144
--data "$WEBHOOK_DATA" $WEBHOOK_ENDPOINT)
145
146
-STATUS=$?
+CURL_STATUS=$?
147
148
# echo "response-body=$response" >> $GITHUB_OUTPUT
149
echo "response-body<<$REQUEST_ID" >> $GITHUB_OUTPUT
150
echo "$response" >> $GITHUB_OUTPUT
151
echo "$REQUEST_ID" >> $GITHUB_OUTPUT
152
153
if [ "$verbose" = true ]; then
154
- echo "Webhook Response:"
+ echo "Webhook Response [$CURL_STATUS]:"
155
echo "${response}"
156
fi
157
158
-exit $STATUS
+exit $CURL_STATUS
0 commit comments