diff --git a/contest/remote/gh.py b/contest/remote/gh.py index fb34a12..22fd392 100755 --- a/contest/remote/gh.py +++ b/contest/remote/gh.py @@ -133,6 +133,11 @@ def get_results(config, cbarg, prev_run, page=1): 'result': result, 'link': test_link}) if not res: print(f"Still waiting, {len(jobs['jobs'])} jobs skipped") + + resp = get(repo_url + f'/actions/runs/{found["id"]}', token) + overall = resp.json() + print("Overall status:", overall.get("status"), "conclusion:", overall.get("conclusion")) + return res