Hi,
When we ask a question to the author in the comments of a task, we assign it to the author and change the status to "Hold". If the author writes a response, we need the status of the task to automatically change to "In Progress" and the task to be assigned to the previous assignee.
How can I configure automation using a sil-script?
We already have a script configured. But how do I configure the script to run when a comment is posted to a task?
JComment cmt = getLastComment(key);
string rep = reporter;
string authorComm=cmt["author"];
if(contains(authorComm,rep)){
string [] h = fieldHistory(key, "assignee");
string a;
if(isNotNull(h[1])) {
a = h[1];
}
else {
a = h[3];
}
assignee = a;
autotransition(521,key);
}
As @KAGITHALA BABU ANVESH suggested, you can use automation.
Hi,
As I understand it, there is automation in service desk projects. We have a software project. I did not find automation in it.
In addition, we need to run the script when adding a comment, but not during the transition. Tried it via SIL Listeners, but nothing worked. Can I run the script when adding a comment? In theory, this is considered a task update and should have worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I Think it's Jira service management kind of activity,
May be you can achieve this by using "Automation" or "Scripting"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.