Git Integration for Jira Cloud Documentation

GitHub webhook events

This page documents the GitHub webhook event types that Git Integration for Jira Cloud supports.

Push Events

Property Value
Type "^push$"
Request URI /api/1/webhook/reindex/install/<secret_key>/web
Content-Type application/x-www-form-urlencoded
X-GitHub-Event push

Payload example:

{
  "repository": {
    "id": 224819315,
    "git_url": "git://github.com/acme/test1.git",
    "ssh_url": "[email protected]:acme/test1.git",
    "clone_url": "https://github.com/acme/test1.git",
    "svn_url": "https://github.com/acme/test1"
  }
}

Pull Request Events

Property Value
Type "^pull_request$"
Request URI /api/1/webhook/reindex/install/<secret_key>/web
Content-Type application/x-www-form-urlencoded
X-GitHub-Event pull_request

Payload example:

{
  "repository": {
    "id": 224819315,
    "git_url": "git://github.com/acme/test1.git",
    "ssh_url": "[email protected]:acme/test1.git",
    "clone_url": "https://github.com/acme/test1.git",
    "svn_url": "https://github.com/acme/test1"
  }
}

Repository Events

Property Value
Type "^repository$"
Request URI /api/1/webhook/reindex/install/<secret_key>/web
Content-Type application/x-www-form-urlencoded
X-GitHub-Event repository

Payload example:

{
  "repository": {
    "id": 224819315,
    "git_url": "git://github.com/acme/test1.git",
    "ssh_url": "[email protected]:acme/test1.git",
    "clone_url": "https://github.com/acme/test1.git",
    "svn_url": "https://github.com/acme/test1"
  }
}

 

Related Webhook Events

Last updated: December 2025

Have feedback about this article? Did we miss something? Let us know!
On this page