Skip to content

Commit fee50fc

Browse files
authored
Update YTS API URL in health check workflow
1 parent 3fcb818 commit fee50fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/api-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: |
1515
echo "Checking YTS API status..."
1616
17-
RESPONSE=$(curl -fsS https://yts.mx/api/v2/list_movies.json) || { echo "Curl failed"; exit 1; }
17+
RESPONSE=$(curl -fsS https://yts.lt/api/v2/list_movies.json) || { echo "Curl failed"; exit 1; }
1818
STATUS=$(echo "$RESPONSE" | jq -e -r '.status') || { echo "Invalid JSON"; echo "$RESPONSE"; exit 1; }
1919
if [ "$STATUS" != "ok" ]; then
2020
echo "❌ API status is NOT ok"

0 commit comments

Comments
 (0)