Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

This article explains how to link the parent of the current sub-task to the new issue in Create issue(s) (JMWE app) post-function.

\uD83D\uDCD8 Instructions

  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 :

    {% 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 as per your use case]

  7. Click Add and publish your workflow.

Now, when the transition is executed on the sub-task, a new issue is created with your configured details and then linked to the current subtask's parent.

References

  • No labels