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"