From 5f0094b92a2a5f3b11fbf2de734e6b8e84eb4f8e Mon Sep 17 00:00:00 2001 From: Breezebuilder Date: Thu, 27 Mar 2025 12:42:51 +1100 Subject: [PATCH] Remove debug print statements --- .github/workflows/check-mod.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 990705cf..af2201ad 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -28,10 +28,6 @@ jobs: -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files") - # Debug the API response - echo "Debug - API Response Type: $(echo "$API_RESPONSE" | jq -r 'type')" - echo "Debug - First 300 chars of response: $(echo "$API_RESPONSE" | head -c 300)" - # Use fallback method if API fails if echo "$API_RESPONSE" | jq -e 'if type=="array" then true else false end' > /dev/null; then echo "Using GitHub API method to find changed files"