Azure DevOps Pipeline Notifications: Custom Subscription Setup

In this article, we are going to learn about Notifications in Azure DevOps.

Azure DevOps has support for the below two types of notifications.

  1. Org/Project Level notifications: You can view all the various types here
  2. Personal notifications: Each individual user can manage their Personal Notifications.

The above two options send notifications only to the members of Azure DevOps. Think about a scenario where you would like to send notifications to anyone who is not part of Azure DevOps.

Azure DevOps also has support for configuring Custom notifications. In this article, we are going to learn about how to configure Custom notifications for any specific event or scenario using a feature called Custom Notification Subscription.

Scenario

You need to store all notification emails in a Common Email box (ex: [email protected]) to audit all the Failures or Partially Succeeded pipeline executions.

Maybe, you may want to store these notifications ONLY for the most critical pipelines instead of all the pipelines for a given ADO Team Project.

Let’s learn how to implement this scenario.

Setup and Requirements

Create the below.

  1. Create two critical pipelines named Pipeline1 and Pipeline2
    • 1st pipeline would have one PowerShell task and it always succeeded
    • Initially, 2nd pipeline will fail.
    • Subsequently, 2nd pipeline will get Partially Succeeded.
    • Finally, 2nd pipeline will get succeeded
  2. Create a non-critical pipeline named Pipeline3 for which you don’t need any notifications to the custom e-mail address.
  3. In order to receive Create Custom Notification Subscription which sends e-mail notification to a custom e-mail address when the below conditions are met.
    • If the Definition Name of the Pipeline is Pipeline1
    • If the Definition Name of the Pipeline is Pipeline2
    • If Pipeline1’s Status is Succeeded, Partially Succeeded or Failed
    • If Pipeline2’s Status is Succeeded, Partially Succeeded or Failed

Solution

Navigate to the Project Settings, click on the Notifications tab, and then click on the New Subscription as shown below.

New Subscription

In the new Subscription tab, as you can see there are quite a few Categories for which you can configure Custom notifications. Our interest is in building notifications.

As shown below, choose the Build option in the Category and then choose A build completes in the Template list, and then click Next.

 Template

In the next step, configure the following.

  1. Feel free to change the Description.
  2. In the Deliver to field, choose Custom email address and provide the email box in the Address field
  3. In the Filter field, choose A specific team project and select your project (it should be automatically set)
  4. In the Filter criteria field, choose the below filters.
    • We would like to receive notifications for both Pileline1 and Pipeline2. So, choose Or as shown below.
      Pipeline
  5. As we are creating only one subscription for getting notifications for both pipelines, we need to take care of the below.
    • Choose Or condition
    • Group both the filters by selecting the checkboxes and clicking on the Group selected clauses as shown below. Please note this icon is enabled only when you select at least one filter by clicking on the respective checkbox.
      Checkbox
  6. Once you click on the Group selected clauses the checkbox selection will be cleared and the grouping will be shown as shown below.
    New clause
  7. Now, we need to add more conditions on when to receive the notifications. Add more clauses by clicking on + Add new clause.
    Finish
  8. As shown in the above screenshot, create another group for all the conditions separated by Or and click on Finish.

Conclusion

In this article, we have learned how to configure custom notifications using Custom notification Subscription.


Similar Articles