Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamalinov committed Feb 23, 2024
1 parent 80e7b61 commit 710d272
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion services/github/webhook_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ async def handle_issue_labeled(payload: GitHubLabeledPayload):


print("got into tmp")
# git.Repo.clone_from(url=f'https://x-access-token:{token}@github.com/nikitamalinov/lalager', to_path=f'./{new_uuid}')
try:
git.Repo.clone_from(url=f'https://x-access-token:{token}@github.com/nikitamalinov/lalager', to_path=f'./{new_uuid}')
except Exception as e:
print(e)
print("Repo cloned")
# Initialize the OpenAI API
io = InputOutput(
Expand Down

0 comments on commit 710d272

Please sign in to comment.