Git Integration for Jira Cloud Documentation

Gerrit webhook indexing integration

Last updated: July 2026

Webhooks are not built into Gerrit by default. You must install and configure the Gerrit webhook plugin before using webhooks with Git Integration for Jira Cloud.

On this page:

 


 

Install the Webhook Plugin

Install Gerrit with the webhook plugin from https://gerrit.googlesource.com/plugins/webhooks/.

 

Configure Webhooks

List Projects (Repositories)

curl http(s)://your.org.com:8080/projects/?d

Check Enabled Webhooks

curl http(s)://your.org.com:8080/config/server/webhooks~projects/MyTestRepo/remotes

Add a Webhook

curl --user username:password -H 'Content-Type: application/json' -X PUT -d @webhook.json http(s)://your.org.com:8080/a/config/server/webhooks~projects/MyTestRepo/remotes/bbb-webhook

Create a webhook.json file:

{
   "url" : "https://example.com/webhook/url",
   "maxTries" : 3,
   "sslVerify": true
}

Replace https://example.com/webhook/url with your webhook URL from Git Integration for Jira Manage Integration page ➜ Gerrit Webhook Indexing Integration ➜ ⚙ ➜ Edit Integration ➜ ‘Webhook URL’.

 

 

Related Articles

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