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 c41c19c commit 0576370
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/github/webhook_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,17 @@ async def handle_issue_labeled(payload: GitHubLabeledPayload):


print("cloned!!!")
print(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git {new_uuid}')
print(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git ./{new_uuid}')
print('listing: ')
os.system(f'ls')
os.system(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git {new_uuid}')
os.system(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git ./{new_uuid}')
print("LITING: ")
os.system(f'ls')
# git.Repo.clone_from(url=f'https://x-access-token:{token}@github.com/nikitamalinov/lalager.git', to_path=f'./{new_uuid}')
except Exception as e:
print(e)
print("Repo cloned")

return
# Initialize the OpenAI API
io = InputOutput(
pretty=True,
Expand Down

0 comments on commit 0576370

Please sign in to comment.