You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Trim output to avoid GraphQL 'Body is too long (maximum is 65536 characters)' error
46
+
maxLength=64000
47
+
if [ ${#output} -gt ${maxLength} ]; then
48
+
output=$(echo "$output" | head -c $maxLength)
49
+
output+=$'\n...\n\n> [!WARNING]\n> The report is too long to be posted in full. Check the complete report in the [workflow logs](https://github.com/mdn/content/actions/runs/'"${GITHUB_RUN_ID}"$').'
0 commit comments