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 f1f9435 commit bab3859
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion services/github/webhook_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,14 @@ async def handle_issue_labeled(payload: GitHubLabeledPayload):
os.system(f'pwd')
print("creating folder")
os.system(f'mkdir {new_uuid}')
print('listing: ')
os.system(f'ls')
print('current dir: ')
os.system(f'pwd')
print("created folder")
os.system(f'cd {new_uuid}')
print("got into folder")
subprocess.run(["git", "clone", 'https://x-access-token:{token}@github.com/nikitamalinov/lalager.git', "/repository"])
subprocess.run(["git", "clone", 'https://x-access-token:{token}@github.com/nikitamalinov/lalager.git'])
print("cloned!!!")
print(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git')
os.system(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git')
Expand Down

0 comments on commit bab3859

Please sign in to comment.