Hello everyone,
I'd like to check if there is currently a way to create a JQL filter in Jira that returns only issues with associated development activity. For example, issues linked to a pull request or commit.
Thank you in advance!
Hi Lara!
Yes, you can filter issues with development activity using these JQL approaches:
For issues with commits:
development[commits].all > 0
For issues with pull requests:
development[pullrequests].all > 0
For any development activity:
development[commits].all > 0 OR development[pullrequests].all > 0
More specific examples:
development[commits].open > 0
development[pullrequests].merged > 0
Note: This requires your development tools (GitHub, Bitbucket, etc.) to be properly integrated with Jira.
Best, Vitaliy
Hello @Lara Sousa
Have you reviewed the options in this document?
https://support.atlassian.com/jira-software-cloud/docs/jql-developer-status/
Show me all the issues on my board that... have an open PR:
development[pullrequests].open
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.