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 99c367a commit 9c857bdCopy full SHA for 9c857bd
src/docker_publisher_osparc_services/http_interface.py
@@ -27,7 +27,7 @@ async def github_did_last_repo_run_pass(
27
) -> bool:
28
async with async_client() as client:
29
repo_path = repo_model.repo.split("github.com/")[1].replace(".git", "")
30
- url = f"https://api.github.com/repos/{repo_path}/actions/runs"
+ url = f"https://api.github.com/repos/{repo_path}/actions/runs?branch={repo_model.branch}"
31
headers = {"Authorization": f"Bearer {repo_model.github.github_token}"}
32
params = {"per_page": "10"}
33
associated_run: Optional[Dict[str, Any]] = None
0 commit comments