I have an Azure Pipelines definition with two consecutive tasks
- Run build
- Manual approval step for QA work (depends on build)
In azure-pipelines.yml
:
jobs:
- job: Build
...
- job: QualityAssurance
pool: server
dependsOn: Build
steps:
- task: ManualIntervention@8
inputs:
instructions: Instructions for quality assurance and approval are here
When running the pipeline I get the following error:
Task execution section of task definition for Id : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx is either missing or not valid.
According to docs for ManualInterventionV8 there are no required parameters.
Any ideas what could be wrong?