Move parent issue status to “In progress” if any one of the subtask is closed

Issue #757 resolved
Former user created an issue

We have the below scenario to develop at work environment: Move parent issue status to “In progress” if any one of the subtask is closed (considering multiple subtasks in the parent issue)

I am very new to the plugin so I would request support to develop.

Comments (4)

  1. Fidel Castro Armario repo owner

    Hi @VMAKAM,

    Insert post-function "Copy a parsed text to a field" into transition to Closed status in subtask's workflow with the following configuration:

    Captura de pantalla 2017-08-23 a las 12.09.06.png

    Boolean expression at parameter Conditional execution is: %{00042} != "In Progress", where %{00042} is field code for Parent's issue status.

  2. Former user Account Deleted reporter

    Hi,

    Can you also please let me know for the below similar scenario:

    Move parent issue status to “In progress” if any one of the subtask is closed but it should happen only when the parent issue is in open status.

    Thanks

  3. Fidel Castro Armario repo owner

    Hi @VMAKAM,

    You should use the following boolean expression at parameter Conditional execution is: %{00042} = "Open", where %{00042} is field code for Parent's issue status.

    If you wanted to consider also status "Reopened", then you should use the following boolean expression:%{00042} in ["Open", "Reopened"]

  4. Log in to comment