in webhook-app/main.py [0:0]
def webhook():
webhook_helper.check_signature(
request.headers['X-Hub-Signature'],
request.data)
logging.info('Delivery: {}'.format(
request.headers.get('X-GitHub-Delivery')))
result = webhook_helper.process(request)
return jsonify(result)