You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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);
}
I Think it's Jira service management kind of activity,
May be you can achieve this by using "Automation" or "Scripting"
As @Kagithala Babu Anvesh suggested, you can use automation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
Catch up with Atlassian Product Managers in our 2020 Demo Den round-up! From Advanced Roadmaps to Code in Jira to Next-Gen Workflows, check out the videos below to help up-level your work in the new ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.