I am using Jira Automation to get some information from an external system which I then want to add to a Jira Version Description. I am appending a url of the external system to the current version description. E.g.
varMyURL=https://madeupurl.com/some_stuff?abc=123
I then use Web Request PUT /rest/api/3/version/{id} to set the description as follows
{ "description": "{{varDescription}} {{varMyURL}} "}
Where VarDescription is the original Description that I have read into a smart Variable earlier. This sort of works except my Version Description now looks like this but AS TEXT NOT A CLICKABLE LINE “Original description "https://madeupurl.com/some_stuff?abc=123" but the actual url is much longer. I would like to get it to appear as a hyperlink that can be clicked on and/or at least put a line separator between the original description text and the url in the new description but I can't work out how to do either of those things. Can anybody help please?
The Description field in the Release doesn't support rich text or html. I don't think that you can get the desired result.
Is there a way of inserting a newline ?
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.