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 9c857bd commit d24a525Copy full SHA for d24a525
src/docker_publisher_osparc_services/http_interface.py
@@ -41,6 +41,7 @@ async def github_did_last_repo_run_pass(
41
run["head_commit"]["id"] == branch_hash
42
and run["head_branch"] == repo_model.branch
43
and run["status"] == "completed"
44
+ and run["conclusion"] == "success"
45
):
46
associated_run = run
47
break
@@ -57,10 +58,7 @@ async def github_did_last_repo_run_pass(
57
58
branch_hash=branch_hash,
59
)
60
- return (
61
- associated_run["status"] == "completed"
62
- and associated_run["conclusion"] == "success"
63
- )
+ return True
64
65
66
async def _gitlab_get_project_id(repo_model: RepoModel) -> str:
0 commit comments