I have two pipelines defined in AzureDevOps, the second (deploy) is triggered when the first (build) succeeds. I have also a branch policy to run build pipeline after each merge to master.
By default, Azure DevOps is set up in a way that I receive an email notification when the build pipeline completes, but I receive no notification after completion of the deployment. How can I receive notifications also for the deploy pipeline?
If triggered manually, the notifications for deployment are being sent, but not when triggered by the build pipeline.
Note that these are both pipelines (defined in YAML), not a pipeline and a release.
Release
as Category andA deployment is completed
. ClickNext
and addFilter criteria
forField
as Deployment status with valueSucceeded
. – Jay