Skip to content

Commit

Permalink
fix: update status condition check
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Feb 14, 2025
1 parent b2a120d commit fa9fb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
echo "Status Code: $status_code"
# Update status message based on response code
if [ status_code -eq 200 ] || [ status_code -eq 201 ]; then
if [ $status_code -eq 200 ] || [ $status_code -eq 201 ]; then
echo "$collection_id successfully published ✅"
status_message+="- **$collection_id**: Successfully published ✅
"
Expand Down

0 comments on commit fa9fb64

Please sign in to comment.