From ceee51e2b36b212ce04ba8fe048b110c4eb65a06 Mon Sep 17 00:00:00 2001 From: Timothy Le Bon Date: Fri, 20 Dec 2024 10:10:20 +0100 Subject: [PATCH] fix: improper string parsing --- .github/workflows/precommit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/precommit.yml b/.github/workflows/precommit.yml index 94fd118d4f5..ebaa80616e8 100644 --- a/.github/workflows/precommit.yml +++ b/.github/workflows/precommit.yml @@ -65,7 +65,7 @@ jobs: id: check_additions run: | # Store response data in variable - response='${{ steps.pr_details.outputs.data }}' + response="${{ steps.pr_details.outputs.data }}" # Parse additions from response total_additions=$(echo "$response" | jq -r '.additions') echo "Found total additions: $total_additions"