The url format for a Jira search is roughly:
https://jira-sd.mc1.iaas.com/browse/currentticket?jql=text ~ "searchstring"
I am trying to script a button that pulls both the current ticket id and the value of one one of the elements in the Details section. The goal is when a user clicks the button, a new tab opens a search of that value with the source ticket selected.
For example:
If I have a ticket https://jira-sd.mc1.iaas.com/browse/XYZ-1234
and an Asset value of ASDF9876
The button would open the following url: https://jira-sd.mc1.iaas.com/browse/XYZ-1234?jql=text ~ "ASDF9876"
Thanks in advance