GH Webhook registration
To install the GitHub webhook, you need to create a webhook in the GitHub repository settings.
- Navigate to Your Repository Settings:
• Go to your GitHub account and select the repository where you want to add the webhook.
• Click on the “Settings” tab located at the top of the repository page.
- Access the Webhooks Section:
• In the sidebar on the left, click on “Webhooks.”
- Add a New Webhook:
• Click the “Add webhook” button on the right side of the page.
- Configure the Webhook:
• Payload URL: Enter your application URL where you want GitHub to send the payloads. Don’t forget to add
/webhook/github
route at the end.
• Content type: application/json.
• Secret: Provide a secret key to ensure that payloads are sent from GitHub. The same key should be set as GITHUB_WEBHOOK_SECRET
environment variable.
- Select Events:
• Pick
Let me select individual events
option and select Pull requests
events.
- Activate the Webhook:
• Ensure the “Active” checkbox is selected to make the webhook active immediately after creation. 
- Finalize:
• Click the “Add webhook” button to save and activate the webhook. 
Once the webhook is set up, GitHub will send a ping event to the specified payload URL to verify the configuration.
For more detailed information, refer to GitHub’s official documentation on creating webhooks