Documentation Center

Configuring human actions in the desc.xml file

Human actions are workflow steps that users must complete. Users also control the transition to the next workflow step. Unlike automatic actions, human actions usually do not contain any business logic.

Procedure

  1. Open the desc.xml file.
  2. Add an entry according to the following template:
    <human_action name="action name" instructions="user instructions" />
    In this case:
    PropertyDescription
    nameThe name of the human action.
    instructionsInstructions presented to the user.

Sample human action entry

<components>

   <!-- Shows you how to create a human action using the component descriptor file -->
   <human_action name="My first human action" instructions="Translate the assets" />

</components>