Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article provides the code snippet to add a web link to an issue, using Build-your-own (scripted) Post-function (JMWE app) post-function and callJira filter.

Instructions

  1. Navigate to the desired workflow transition and add the “Build-your-own (scripted) Post-function (JMWE app)” post-function.

  2. Add the below Nunjucks template:

    Code Block
    languagejava
    {{"/rest/api/2/issue/:issue/remotelink" | callJira(verb=("post"),params={"issue":issue.key},body={"object":{
      url:"https://innovalog.atlassian.net/wiki",
      title:"Innovalog"
    } }) }}

...

Info

If this post-function is added on the create transition, select the checkbox “Delay the execution of this post-function” under “Delayed execution” and select a delay of 3 seconds.

References

...