Understanding GitHub Webhooks: Practical Usage Examples

In this article, we will explore GitHub webhooks, providing practical examples that demonstrate how they can be utilized to automate workflows and enhance integration with other services.
By Jamie

What Are GitHub Webhooks?

GitHub webhooks are automated messages sent from one application to another whenever an event occurs in a repository. They allow developers to integrate their applications with GitHub, facilitating real-time updates and actions based on repository events.

Example 1: Triggering a CI/CD Pipeline on Push

One common use case for GitHub webhooks is to trigger Continuous Integration/Continuous Deployment (CI/CD) pipelines when new code is pushed to a repository. Here’s how it works:

Steps:

  1. Set Up Your CI/CD Tool: Ensure your CI/CD tool (such as Jenkins, CircleCI, or Travis CI) can receive webhook requests.
  2. Create a Webhook in GitHub:

    • Navigate to your repository on GitHub.
    • Go to Settings > Webhooks > Add webhook.
    • Enter the payload URL from your CI/CD tool.
    • Choose the event type (typically, you would select Just the push event).
    • Click Add webhook.
  3. Push Code: Whenever a new commit is pushed, GitHub sends a POST request to your CI/CD tool, triggering the pipeline.

Example Payload:

{
  "ref": "refs/heads/main",
  "before": "0000000000000000000000000000000000000000",
  "after": "1234567890abcdef1234567890abcdef12345678",
  "repository": {
    "id": 123456,
    "name": "my-repo",
    "url": "https://github.com/user/my-repo"
  },
  "pusher": {
    "name": "user",
    "email": "user@example.com"
  }
}

Example 2: Sending Notifications to a Slack Channel

Another practical application of GitHub webhooks is to send notifications to a Slack channel whenever an issue is opened or closed.

Steps:

  1. Create a Slack Incoming Webhook:

    • Navigate to your Slack workspace settings and create an incoming webhook.
    • Copy the webhook URL provided by Slack.
  2. Set Up a Webhook in GitHub:

    • Go to your repository’s Settings > Webhooks > Add webhook.
    • Paste the Slack webhook URL as the payload URL.
    • Select Let me select individual events and check Issues.
  3. Monitor Slack Notifications: Now, whenever an issue is opened or closed, a message will be sent to the specified Slack channel.

Example Payload:

{
  "action": "opened",
  "issue": {
    "title": "New Issue Title",
    "number": 1,
    "user": {
      "login": "user"
    }
  },
  "repository": {
    "name": "my-repo"
  }
}

Example 3: Updating a Project Management Tool

Integrating GitHub with a project management tool like Trello can enhance workflow efficiency. You can set up a webhook to update Trello cards when pull requests are merged.

Steps:

  1. Create a Trello API Key and Token: Follow Trello’s API documentation to get your API key and token.
  2. Set Up a Webhook in GitHub: Similar to the previous examples, create a webhook in GitHub pointing to your server that handles the Trello API calls.
  3. Handle the Webhook Request: Write a script to update Trello cards using the GitHub webhook payload whenever a pull request is merged.

Example Payload:

{
  "action": "closed",
  "pull_request": {
    "merged": true,
    "title": "Merge PR Title",
    "number": 1
  },
  "repository": {
    "name": "my-repo"
  }
}

Conclusion

GitHub webhooks provide a powerful mechanism to automate workflows and enhance integration with various tools and services. By setting them up correctly, you can streamline your development process and improve team collaboration.