diff --git a/src/docker_publisher_osparc_services/http_interface.py b/src/docker_publisher_osparc_services/http_interface.py index d92eeb8..82c82a3 100644 --- a/src/docker_publisher_osparc_services/http_interface.py +++ b/src/docker_publisher_osparc_services/http_interface.py @@ -20,7 +20,7 @@ async def github_did_last_repo_run_pass( async with async_client() as client: repo_path = repo_model.repo.split("github.com/")[1].replace(".git", "") url = f"https://api.github.com/repos/{repo_path}/actions/runs" - headers = {"Authorization": f"Bearer {repo_model.github.gitlab_token}"} + headers = {"Authorization": f"Bearer {repo_model.github.github_token}"} params = {"per_page": "10"} associated_run: Optional[Dict[str, Any]] = None