in utils/issues.py [0:0]
def findPR(issue):
for comment in issue.fields.comment.comments:
if 'asfgit closed the pull request' in comment.body:
return comment.body.split("cloudstack/pull/")[1].split("\n")[0].strip()
return ""