1
0
-1

Hi,


When a sync'ed Azure DevOps ticket is 'Done', I can update the status of the connected Jira issue, but I can't set a default Resolution (Resolved). I've reference the Jira documentation, but I don't think it's entirely relevant when the source is Azure DevOps where no Resolutions exist.


Cheers. 

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi!


      This should work on Jira:

      //Incoming script
      issue.resolution = nodeHelper.getResolution("Resolved")

      Let me know if it does.

      1. Howard Kenny

        Cheers Juan - that worked.


        I went with this:

        if (remoteStatusName == "Done"){
            issue.resolution = nodeHelper.getResolution("Resolved")
            }
      CommentAdd your comment...