Updated on 2025-08-13 GMT+08:00

ManualReview

Create manual review tasks by assigning one person or one group. An email notification can be sent to reviewers.

Adding the Extension with GUI

Add the ManualReview extension when you orchestrate a pipeline. Set parameters as shown in Table 1.

Table 1 Parameter description

Parameter

Description

Name

Extension name, which can be customized.

  • Enter only letters, digits, hyphens (-), underscores (_), commas (,), semicolons (;), colons (:), periods (.), slashes (/), parentheses (), and spaces.
  • Enter 1 to 128 characters.

Review Source

Source of the reviewer. Select Project Members or Project Roles.

Reviewer

Configure reviewers.

Review Role

When Review Source is set to Project Roles, select review roles. In an IPD project, the project creator does not participate in the review as a project manager.

Review Mode

Select Review by all or Review by any person.

Timeout Processing

Configure the processing method when the review times out.

Review Duration

How long the review lasts, which cannot be longer than three days.

Description

Description of the review task.

Adding the Extension with YAML

Add the ManualReview extension when you orchestrate a pipeline. Configure the YAML syntax as follows:

  • ManualReview
    uses: Checkpoint 
    with:  
      mode: members|roles   
      approvers: 05d8ca972f114765a8984795a8aa4d41   
      roles: PROJECT_MANAGER   
      checkStrategy: all|any   
      timeout: 300  
      timeoutStrategy: reject|pass   
      comment: comment
    • mode: Review mode.
      • members: Review by member.
      • roles: Review by role.
    • approvers: User IDs of the approvers when mode is set to members.
    • roles: Role when the mode is set to roles.
    • checkStrategy: Strategy used when the mode is set to members.
      • all: The review task needs to be reviewed by all members.
      • any: The review task can be reviewed by any member.
    • timeout: Review timeout.
    • timeoutStrategy: Strategy used when the review times out.
      • reject: The review is rejected.
      • pass: The review is approved.
    • comment: Review description.