GitHub Integration
Learn how Releasebot integrates with GitHub, including permissions, webhooks, and app installation.
Releasebot integrates deeply with GitHub to automatically generate changelogs when you merge pull requests. This page explains how the integration works.
GitHub App
Releasebot uses a GitHub App to integrate with your repositories. This provides several benefits:
- Fine-grained permissions - We only request the permissions we need
- Webhook delivery - GitHub notifies us instantly when PRs are merged
- Secure authentication - No personal access tokens required
Required Permissions
When you install the Releasebot GitHub App, we request the following permissions:
| Permission | Access | Purpose |
|---|---|---|
| Pull requests | Read | Access PR titles, descriptions, and metadata |
| Contents | Read | Read commit messages and changed files |
| Metadata | Read | Repository name, owner, and visibility |
We never request write access to your code or repository settings.
Webhook Events
Releasebot subscribes to the following webhook events:
pull_request- Triggered when PRs are opened, closed, or mergedpush- Triggered when commits are pushed (for branch tracking)
When a PR is merged to a tracked branch, we:
- Receive the webhook event from GitHub
- Verify the webhook signature for security
- Fetch additional PR details via the GitHub API
- Queue the changelog generation job
Installation
Installing on Your Account
- Go to Settings → Installations in Releasebot
- Click "Add repositories"
- Select your GitHub account or organization
- Choose which repositories to enable
Installing on an Organization
If you're installing on a GitHub organization:
- You need admin access to the organization
- After installation, organization members can access the dashboard
- Repository access follows your GitHub team permissions
Security
Webhook Verification
All incoming webhooks are verified using the X-Hub-Signature-256 header. We reject any requests with invalid or missing signatures.
Data Access
- We only access data necessary for changelog generation
- PR content is processed but not permanently stored
- Generated changelogs are stored in our database
Revoking Access
You can revoke Releasebot's access at any time:
- Go to GitHub → Settings → Applications → Installed GitHub Apps
- Find Releasebot and click "Configure"
- Click "Uninstall" to remove all access
This will immediately stop changelog generation for all your repositories.
Troubleshooting
Webhooks Not Arriving
If changelogs aren't being generated:
- Check that the repository has the Releasebot app installed
- Verify the branch is being tracked in your settings
- Check the webhook delivery status in GitHub (Repository → Settings → Webhooks)
Permission Errors
If you see permission errors:
- Re-install the GitHub App
- Ensure you have admin access to the repository
- Check that the app has the required permissions