The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Where can I find the documentation for com.onresolve.scriptrunner.canned.jira.workflow.postfunctions

YAVUZ AKIN
May 27, 2020

I'm trying to clone an issue using 

com.onresolve.scriptrunner.canned.jira.workflow.postfunctions.CloneIssue

 

void cloneIssue (MutableIssue issue, def parent) {
    def params = [
        issue : issue,
        //(CloneIssue.FIELD_PARENT) : parent,
        (CloneIssue.FIELD_SELECTED_FIELDS) : null, //clone all the fields
    ] as Map<String, Object>
    new CloneIssue().doScript(params)
}

But I cannot for the love of god find where the properties are documented. I need to change the parent of the issue when cloning.

 

Thank you

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 27, 2020

There is no public documentation for this, but all their canned scripts pretty much follow the same template. The doscript params is a map of FIELD : value.

You can get the list of fields using the scriptrunner console's autocomplete.

2020-05-27 14_16_02-Window.png

To answer your other question, I've never seen a cloning feature in jira (built-in or add on) that copied the full history. But in theory, but you can use:

The rub is that I don't see how you can set the date/time of the change history. Each changegroup you create would have a new timestamp.
That's probably why, generally, cloned issues preserve a link to the issue they were cloned from so one could follow the clone link and consult the history there.

YAVUZ AKIN
May 27, 2020

Thanks for the response. I'm just going to roll with no history for now. I've never seen autocomplete in the script console. Do I need to enable it or something? Thanks again.

PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 27, 2020

It's enabled by default in newer versions.

Usually, after upgrading, the console will have a large announcement panel that shows he shortcuts.

You can find the details here: https://scriptrunner.adaptavist.com/latest/jira/code-editor.html

0 votes
YAVUZ AKIN
May 27, 2020

So I actually solved this issue but I've ran into another. So CloneIssue does not copy the history of the original issue. Is there anyway to add this?

TAGS
AUG Leaders

Atlassian Community Events