We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83f92e commit 7ba565dCopy full SHA for 7ba565d
src/app.py
@@ -28,6 +28,7 @@ async def webhooks(repo):
28
if payload['repository']['name'] == repo and 'action' in payload.keys():
29
if payload['action'] == 'released' and 'release' in payload.keys():
30
p = Process(target=processRelease, args=(repo,payload))
31
+ print(p.pid)
32
p.start()
33
34
return 'Thanks!', 202
0 commit comments