Versions Compared

Key

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

...

  1. Navigate to the intended workflow to make the necessary changes in the edit mode.

  2. Select the required transition.

  3. Select the Post functions tab and click Add post function.

  4. Add the “Create issue(s) (JMWE app)” post-function.

  5. Fill in the required details.

  6. Select the “Linked Issues” field under “Set specific fields of new issue(s)”. Select “Set field value to:” and add the below template :

    Code Block
    languagejava
    {% set target = []%}
    {% set parentKey = issue | parentIssue("key") | field("key") %}
    {% if parentKey %}
    {% set val = {"type": {"name":"Blocks"}, "inwardIssue": {"key": parentKey} } %}
    {% set unused = target.push(val) %}
    {% endif %}
    {{target | dump(2)}}

    Modify the link type name(Blocks in line #4). Use either inwardIssue or outwardIssue in line #3 #4 as per your use case]

  7. Click Add and publish your workflow.

...