From fa9fb64c504e7aa9824d6fd0e65c602f7750f302 Mon Sep 17 00:00:00 2001 From: Jennifer Tran <12633533+botanical@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:02:21 -0800 Subject: [PATCH] fix: update status condition check --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b5c253ed..21f2038b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -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 ✅ "