Git Integration for Jira Cloud Documentation

Contact support
GitKraken Status  

JQL Searching for Commits and Pull Requests

Access JQL searching via Issues and Filters ➜ Search Issues.

Limitation
Only Jira Company-managed projects support development JQL searching. Team-managed projects are not currently supported.

 

JQL: Commits

Use the following JQL syntax to locate all Jira issues with more than one commit:

development[commits].all > 0
JQL to find issues with at least one commit

Example: Find all issues with more than 15 commits:

development[commits].all > 15

 

JQL: Pull Requests

Use the following JQL syntax to locate all Jira issues with more than one pull request:

 development[pullrequests].all > 0
 development[pullrequests].open > 0 (to only search for open pull requests)
JQL to find issues with at least pull request

 

Examples:

Find all issues with more than 5 open or merged pull requests:

development[pullrequests].all > 5

Find all issues with any open pull requests:

development[pullrequests].open > 0

 

More related topics on Jira Development Information

Development Information Views

JQL searching for commits and pull requests (this page)

Jira Cloud Smart Commits and Workflow Triggers

Jira Development Information general settings

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