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
- GitLab webhook events
- Microsoft webhook events
- AWS CodeCommit webhook events
- Bitbucket webhook events
Last updated: December 2025