ci: only check for completed jobs every 60s (#10686)

According to GitHub support, this API call is responsible for most of
our API usage. Until we find a better way of organising this, checking
every only minute should be fine too, even if it slows down the merge
queue a bit.

Signed-off-by: Thomas Eizinger <thomas@eizinger.io>
This commit is contained in:
Thomas Eizinger
2025-10-23 07:20:20 +11:00
committed by GitHub
parent ed2bc0bd25
commit 67e376eb02

View File

@@ -147,7 +147,7 @@ jobs:
echo "Jobs not yet completed:"
echo "$jobs_json" | jq -r '.[] | select(.status != "completed") | "- " + .name + " (Status: " + .status + ")" '
sleep 10
sleep 60
done
kotlin: