Versions Compared

Key

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

...

Code Block
languageyaml
["$uri:email:address1@mail.tld", "$uri:user:someusername"]

$uri:wf- (workflow addresses)

In case a push event is a workflow event (see pipeforce.event.workflow.#), these additional address variables can be used in TO, CC and BCC fields to refer to data from the event message:

  • $uri:wf-authenticated-user
    Returns the $uri:user:<username> of the user who was logged-in at the time of this event and potentially has initiated this event.

  • $uri:wf-process-involved-users
    Returns the $uri:user:<username> of all users involved in the workflow process.

  • $uri:wf-started-by
    Returns the $uri:user:<username> of the user who started the workflow.

  • $uri:wf-task-candidate-groups
    Returns the $uri:group:<name> names of all groups which are set as candidate group of given task. In case there is no candidate group set, the address variable will be removed from all address fields.

  • $uri:wf-task-candidate-users
    Returns the $uri:user:<name> names of all users which are set as candidate users of given task. In case there is no candidate user set, the address variable will be removed from all address fields.

  • $uri:wf-task-assignee
    Returns the $uri:user:<username> of the user who is set as assignee on given workflow task. In case there is no taskAssignee set, the address variable will be removed from all address fields.

  • $uri:wf-task-owner
    Returns the $uri:user:<username> of the user who is set as assignee on the given workflow task. In case there is no taskOwner set, the address variable will be removed from all address fields.

  • $uri:author
    In case the event is related to a comment creation, returns the $uri:user:<username> of the user who created the comment. This is also true for comments created outside of workflow related events.

Duplicate addresses will always be removed.

Resolving of expandable addresses

...