I have created a custom web item in the form of a button using script fragments.
I require this button when clicked to load a Jira screen that is not set to any of the default actions (Create, Edit or View).
In theory this shouldn't be too hard as the feature described works with workflow transitions however I can not seem to get anything to work or find anything on the internet.
Does anybody have a solution that will allow me to link my button to a screen?
This line does an implicit collection of all the "full_name" from all the items (that's what the * does).
def repoNames = repos["items"]*."full_name"
So instead, just do your own collection:
def repoNames = repos["items"].collect{"${it."full_name"} ${it."node_id"}"}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.