Skip to main content
MergeWatch follows the principle of least privilege. Every permission below is the minimum required for the app to function. This page is written for security teams evaluating MergeWatch for enterprise adoption.

Permission table

Repository permissions

Organization permissions

All permissions are set at install time via the GitHub App manifest. You can verify them at any time in GitHub Settings > Applications > MergeWatch > Permissions.

What MergeWatch does NOT request

Equally important is what the app cannot do. These permissions are intentionally excluded.

No repository: write

MergeWatch cannot push commits, merge pull requests, or modify any file in your repository. It is read-only with respect to code.

No secrets: read

MergeWatch cannot access repository or organization secrets. It has zero visibility into your CI/CD credentials, tokens, or environment variables.

No actions: write

MergeWatch cannot trigger, cancel, or modify GitHub Actions workflows. It operates entirely outside your CI/CD pipeline.

Webhook events

MergeWatch subscribes to the following webhook events. Each event triggers a specific, scoped action. All other events are acknowledged with 200 OK and ignored. See Webhook Events for the exact action-level handling per event.
GitHub App webhook event subscriptions

Webhook event subscriptions — the checked events are the ones MergeWatch requires.

You can inspect every webhook delivery — including payload and response — in your GitHub App’s Advanced tab under Recent Deliveries.

Security model

MergeWatch is designed so that sensitive credentials are never embedded in code, environment variables, or Lambda configuration.

Zero API keys in the runtime

GitHub credentials (App ID, private key, webhook secret) are stored in AWS SSM Parameter Store, encrypted at rest with AWS KMS. The Lambda function reads them at invocation time via the SSM API — they are never baked into the deployment artifact. Amazon Bedrock authentication uses the Lambda execution role (IAM instance profile). There are no Bedrock API keys to manage, rotate, or leak.

Webhook signature validation

Every incoming webhook is validated using HMAC-SHA256 before any processing occurs. Requests with missing or invalid signatures are rejected immediately. This prevents spoofed payloads from triggering the review pipeline.

IAM permissions are tightly scoped

The Lambda execution role follows least-privilege IAM policy design.
The IAM policy is defined in the SAM template and deployed via CloudFormation. You can audit the exact permissions in the template.yaml file of the MergeWatch repository.

Frequently asked questions

No. MergeWatch has contents: read only. It cannot push commits, create branches, or modify any file. The only write operations are posting review comments (pull_requests: read & write) and creating check runs (checks: read & write).
No. Diffs are read from the GitHub API, processed in memory during the Lambda invocation, and discarded. No source code is written to DynamoDB, S3, or any other persistent store.
Yes. During installation, select Only select repositories instead of All repositories. You can change this at any time in GitHub Settings > Applications.
Three places to look: GitHub webhook delivery logs show every event sent to the app. CloudWatch Logs capture the full Lambda execution trace. Bedrock invocation logs (if enabled) show every model call and its input/output.