1
0

Remove debug print statements

This commit is contained in:
Breezebuilder
2025-03-27 12:42:51 +11:00
parent 8f20655524
commit 5f0094b92a

View File

@@ -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"