I have used Automation in JIRA and created a rule which runs a SIL script.
the main script is:
lfWatch("assignee",{"assignee"}, "Update1.sil");
lfWatch("customfield_16004", {"customfield_16004"}, "Update2.sil");
This one monitors if either the assignee field or another custom field changes and update1.sil and update2.sil has the following code.
customfield_16004=argv["assignee"];
AND
assignee=argv["customfield_16004"];
But this does not work. I do not get any syntax error. Need help.
Hello,
You wrote a Live Fields script, which should work in screens , before a transition was executed. Automation for Jira is executed after a transition was executed, that is why your script does not work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.