Release
• 1 minute read

Webhook forwarding in the GitHub CLI

Summary

Following a successful beta with lots of great customer feedback, webhook forwarding in the GitHub CLI is now available to everyone. Webhook forwarding makes it easy to test your webhooks…

Following a successful beta with lots of great customer feedback, webhook forwarding in the GitHub CLI is now available to everyone.

Webhook forwarding makes it easy to test your webhooks integration in your local environment without having to worry about port forwarding.

All it takes to start receiving webhooks locally is one simple command:

gh webhook forward --repo monalisa/hello-world --events issues,pull_request --url http://localhost:4000/webhooks

To learn more, head over to "Receiving webhooks with the GitHub CLI" in the docs.

Back to top