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 8937146 commit 80a1492Copy full SHA for 80a1492
src/docker_publisher_osparc_services/http_interface.py
@@ -27,9 +27,9 @@ 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?branch={repo_model.branch}"
+ url = f"https://api.github.com/repos/{repo_path}/actions/runs"
31
headers = {"Authorization": f"Bearer {repo_model.github.github_token}"}
32
- params = {"per_page": "10"}
+ params = {"per_page": "10", "branch": repo_model.branch}
33
associated_run: Optional[Dict[str, Any]] = None
34
35
while url:
0 commit comments