Hi
I'm trying to get round the limitations of Jira Service Desk automation by using Scriptrunner for the approval functionality, The main reason for this is we want to include custom fields in the emails that go to approvers so they can get all the change ticket info in the email then click approve/decline from there.
Email code:
Dear <% out << issue.assignee?.displayName %>,
<br>
The $issue.issueType.name $issue.key with priority <% out << issue.priority?.name %> has been assigned to you.
<br>
Description: ${issue.description}
<br>
Implementation Details: <% out << issue.getCustomFieldValue(com.atlassian.jira.component.ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Implementation Details")) %>
<br>
Regards,
<% out << issue.reporter?.displayName %>
${getWorkflowButtons.call()}
I've gotten as far as adding the example on the scriptrunner quick reference and modifying it a bit, it's even including the workflow buttons
Unfortunately every time I try and click the workflow button I get errors.
I've even tried removing the approval function from the statuses to see if that was the issue but nope, same issue, thought it might have been the post function being to high in the post functions order but nope, made it the last thing in the list and still the same result.
I'm not much of a coder at all, have to go scraping for examples whenever I want to do something like this, so, is there a way I can get this working?
Only other option is to try and copy the contents of 5 custom text fields to the bottom of the description and let the JSD approval emails do it, only problem is I cant find a script for that either XD
Any help would be appreciated
This was a confirmed bug and was resolved on versions 5.5.0 & 5.5.2 of ScriptRunner for Jira Server/Datacenter.
I also use this code to show transition buttons in email
${getWorkflowButtons.call()}
but when reviewer clicks the button in email, he/she always encounters the problem of "XSRF security token missing"? how can I resolve this problem?
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.
Above is working fine for me.
Just a query
How to add hyperlink to SUP-369 ?
In addition to this i need to have epic name also to be displayed,what change we have to do?
Thanks
Amit Anand
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @amit anand
Try this:
<a href = "${baseurl}/browse/${issue.getKey()}">${issue.getKey()}</a>.</td></tr>
https://scriptrunner.adaptavist.com/4.3.6/jira/builtin-scripts.html#_send_custom_email
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have Done button (which is global transition ) in workflow. When I use a getWorkflowButtons.call(), jira send to approver Accept, Reject and global Done buttons. Is any way to send message without Done buton? I add condition to Done transition issue.status.name != 'In review' but this doesn't help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if don't want transition from In review to Done, why not just modify your workflow to remove that transition? buttons should changes accordingly. the buttons get from getWorkflowButtons.call() is just the same as what buttons you can see from jira issue view.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Stephen Letch did you get a solution for this issue. I am having the exact same issue you are having.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I will get with our ScriptRunner team to see if this has been updated yet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any update on this @Brittany Wispell ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It was confirmed a bug and was resolved on versions 5.5.2 of ScriptRunner for Jira Server/Datacenter.
If you have any other questions please let me know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This to me looks like a ScriptRunner bug. I'd suggest raising a ticket with them see link below.
Let me know if you have any other questions. Well done on scrapping this together! It looks good. :)
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.