Reputation: 78
Added a pipeline source with approval step which had an approvers list
pipelines:
- name: testing
steps:
- name: test_step
type: Bash
configuration:
requiresApproval:
approvers:
- nehamishra
notifications:
- integrationName: test_slack
execution:
onExecute:
- echo "Got the approval"
The pipeline sync failed with below error message
undefined: failed to validate approver nehamishra when validating configuration.requiresApproval.approvers list for Bash step test_step with error: Artifactory user does not exist.
Upvotes: 0
Views: 37
Reputation: 78
The resolution to fix the above error is to have only relevant artifactory users who are active in the list of approvers in the approval gate step.
Upvotes: 0