We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28be71c commit fffeb71Copy full SHA for fffeb71
src/docker_publisher_osparc_services/http_interface.py
@@ -36,7 +36,7 @@ async def github_did_last_repo_run_pass(
36
result = await client.get(url, params=params, headers=headers)
37
runs = result.json()
38
39
- for run in runs["workflow_runs"]:
+ for run in runs.get("workflow_runs", []):
40
if (
41
run["head_commit"]["id"] == branch_hash
42
and run["head_branch"] == repo_model.branch
0 commit comments