I’m currently using Azure DevOps and I have a pipeline job where I’d like to include manual intervention. I’m currently listing my emails in Library –> Variable Group:
Variable group name: MyVariableGroup
Variables Names: notifyEmails
Value: [email protected],[email protected]
parameters:
- name: emails
type: string
jobs:
- job: PromptUserInput
displayName: 'Manual Validation'
pool: server
timeoutInMinutes: 180
steps:
- task: ManualValidation@0
timeoutInMinutes: 120
inputs:
notifyUsers: ${{ parameters.emails }}
instructions: 'Please review'
onTimeout: 'reject'
displayName: 'Manual Validation Step'
The problem is that when I use just one email [email protected], an email is sent out, but if I include more than one email, then no emails are sent out. How can I ensure that everyone in notifyEmails receives an email?
I’ve tried using just one email, and it works, but using two emails fails.