为 AWS EC2 服务器设置 Github Webhook

Setup Github Webhook for AWS EC2 server

我在 aws ec2 实例中部署了一个 webapp。我最近了解了 Github Webhook。现在我正在尝试为我的 ec2 服务器设置 webhook 服务。有人可以演练一下吗:

1. How to receive the webhook payload for server endpoint.
2. What will be the Payload URL that one have to write in github webhook service.

首先您需要转到您的存储库,然后单击以下顺序:

Settings -> Webhooks & Services -> Add webhook

然后粘贴 url,其中 github 将为每个新提交提交数据。您可以在 example 中找到有效载荷的示例。

然后在后端实现处理新提交信息所需的逻辑。