We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c5ebe6 commit 9b10f8eCopy full SHA for 9b10f8e
1 file changed
.github/workflows/jira-ticket-check.yaml
@@ -307,15 +307,6 @@ jobs:
307
--max-time 30 \
308
"${API_URL}" 2>&1)
309
310
- # Check if curl failed (non-zero exit code means curl error, not HTTP error)
311
- if [ $CURL_EXIT -ne 0 ]; then
312
- echo "❌ Failed to connect to Jira API (curl exit code: $CURL_EXIT)"
313
- echo "⚠️ Response: $BODY"
314
- echo "⚠️ Continuing without verification..."
315
- echo "exists=true" >> $GITHUB_OUTPUT
316
- exit 0
317
- fi
318
-
319
# Check if response indicates ticket doesn't exist (404 error in JSON)
320
if echo "$BODY" | grep -qiE '"errorMessages"|"statusCode":\s*404'; then
321
echo "❌ Ticket $TICKET does not exist in Jira"
0 commit comments