Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamalinov committed Feb 21, 2024
1 parent cee7428 commit 6d6fce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
run: |
docker build -f ./Dockerfile -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Update Lambda function with latest ECR image
env:
LAMBDA_NAME: lambda-container
Expand Down
1 change: 1 addition & 0 deletions services/github/github_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def create_jwt(self) -> str:

# Verify the webhook signature for security
async def verify_webhook_signature(self, request: Request, secret: str) -> None:
return
signature: str | None = request.headers.get("X-Hub-Signature-256")
if signature is None:
raise ValueError("Missing webhook signature")
Expand Down

0 comments on commit 6d6fce6

Please sign in to comment.