Hi!
I'd like to create a JQL query that I can use to identify if a jira issue had changes that were included in a particular BitBucket pipeline build.
You can include various development fields in a JQL query such as:
project in ("Project Name")
AND status in (Finished, "IN QA")
AND development[commits].all >= 1
AND development[pullrequests].all >= 1
ORDER BY updated DESC, key DESC
But there doesn't seem to be a way to include a particular pipeline build number.
Any suggestions appreciated!
Thanks in advance.