Skip to content

Commit

Permalink
fixed code
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Aug 19, 2024
1 parent 90fafdb commit 188e9bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker_publisher_osparc_services/http_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 188e9bc

Please sign in to comment.