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 1e6ce70 commit 9bcf887Copy full SHA for 9bcf887
.github/workflows/final_combined.yml
@@ -108,12 +108,17 @@ jobs:
108
109
result_status=$(echo "$response" | jq -r '.status // empty')
110
message=$(echo "$response" | jq -r '.message // "No message provided"')
111
+ id=$(echo "$response" | jq -r '.operation_Id // "No message provided"')
112
113
if [ "$result_status" != "passed" ]; then
114
echo -e "\n"
115
echo -e " ❌ Validation failed: \n"
116
echo -e " $message"
117
+ echo -e "\n"
118
+ echo "operation id is $id"
119
exit 1
120
fi
121
122
echo "✅ $message"
123
124
0 commit comments