Hello team I am checking since yesterday the power scripts add on in jira cloud and i am trying to start a draft comment when a specific value is selwected from a custom field So the idea i...
Hello Community, I am trying to diplay the latest Release version of 6 projects in a single custom field using SIL power scrupt . Script is not working . Can someone please review and a...
Good afternoon! Using the script, I try to write the difference between two dates in the customfield, the script is presented below. <!--@@ Formula: if (issue.get(Created())==null || issue.get("...
Hi, I have a Power Custom Field on create issue screen. This is a field required by the validator - it has to be set, otherwise Jira won't create the issue. If I try to create the issue programmati...
Good afternoon! It is necessary to write the SLA execution time in hours in the user field. when writing sil, it returns an error, and a snapshot is attached. How to fix this problem.
Hello! I am trying to write a custom SIL post-function script to update the value of a custom single-select field I have based on the values selected in two other custom single select field. H...
Hello, We are looking at adding a post function to a workflow transition that will execute a script (shell or ?) on a remote server when the transition is changed to "Approved". Something like...
Hello I am trying to clone issue by SIL script in Jira Cloud, but I`ve faced several issues: 1) cloneIssue routine doesn`t work in Jira Cloud. 2) create Issue routine always fails with Bad request...
Hello , i have a validor who return list of errors , i want to show this errors as list like : error 1. error 2. error 3. in return false,listeErrors; how i can do that ...
I need a specific user assignment. In the assignee field I get a strange value. How to get valid value for assignee? if (issueType == 'Bug'){ assignee = getUser('USERNAME'); }
while I have this working with: if(argv["screen"] == "create-subtask") { //only on that screen lfSet("issueType", {"Sub-task"}); the system won't let me choose any other issues type. it just alway...
I'm trying to update Portfolio target start/end date from Power Scripts. I'm even trying something as simple as: %k%.customfield_10109 = currentDate(); However, that ends up with the following erro...
I have an issue with multiple fields that must be selected to transition to the next status. How do i make it that if all fields a, b, and c = yes, as soon as the last of the three fields are moved t...
Hi Guys, i am trying to update the parent(customfield_10031) field from child subtask but its not getting updated. if(isNotNull(parent)) { description = "Testing"; customfield_10033 = currentDat...
First off, I work in a bureaucratic limited funding environment. I'm not able to get whatever add-on that might make this simpler (which seems to be the simple answer everyone seems to come up with)....
In my environment "TDB Security Member" custom field has been designed to capture the ID of the "current active user" whenever a user accesses an issue. So now, although the user is not activel...
Hi, We are moving our jira instance to AWS and while testing SIL scripts we got a strange error - The SIL scripts folder in our instance is /efs/jira/silprograms. But while trying to open any SIL sc...
Hello, We have installed the Power Custom Field plugin by cPrime. The plugin was called Kepler before. Anyway, after version 4.0.4, we did not update it as it went from being free to being a paid p...
Hi, I installed trial version of Power Scripts. I am tryinng to add script in our workflow, but i dont see option to do this in Add Condition. I can't add SIL Gadget to test scripts, it is not visibl...
Hi, we use Jira Cloud and I've setup the workflow to execute SIL scripts as a Post function, making them the very last step after the "Fire a Generic Event event that can be processed by th...
Hi everyone. I've got a problem with a struct for JSON in SIL script. To read JSON via httpGet() from http://{my.jira}/rest/tempo-core/1/holidayscheme/{id}/days/floating i need structrure like...
Hi all, When using life field of power script plugin , this error appear Data with key com.atlassian.jira.plugins.jira-browser-metrics:contrib.scm-commit-id has already been claimed and javascript...
Could you explain please, how can I get a list in the tempo plugin and with powerskripts that shows what roles and commands the user is included in.
Hi , I am trying to make a custom field mandatory based on the value of another custom field using SIL script. if (argv["customfield_17000"] == "Digital ad" ){ lfShow("customfield_18600"); //Gifs ...
We would like to add Component/s to a ticket, based on key words that may be mentioned in the Description field. Are there any resources to learn about what the syntax is for Groovy to parse the Desc...
Copied to clipboard