diff --git a/infrastructure/main.py b/infrastructure/main.py index 1df4dcb..a811666 100644 --- a/infrastructure/main.py +++ b/infrastructure/main.py @@ -6,6 +6,7 @@ from google.cloud import storage def handle_webhook(request): request_json = request.get_json() # Check if the required fields are in the request + print(request_json) if not request_json or "repository" not in request_json: return "Invalid request: 'repository' field missing", 400