4

I have an Azure Pipelines definition with two consecutive tasks

  1. Run build
  2. 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?

jsalonen
  • 29,593
  • 15
  • 91
  • 109

2 Answers2

4

Looks like it's not supported yet within build pipelines.

From https://developercommunity.visualstudio.com/content/problem/356708/cannot-use-manualintervention.html

According to this doc: https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/manual-intervention?view=vsts#demands , Manual Intervention Task now cannot support in build pipeline, please change other task to replace it.

maximede
  • 1,763
  • 14
  • 24
0

Some years later, the ManualValidation@0 is what works for me.

Copil tembel
  • 399
  • 4
  • 22