Automatic notification trigger

SB 380 Reputation points
2026-07-23T11:23:05.7866667+00:00

Hi Team,

I am going to add a custom field called Decision with dropdown values "Accept" and "Reject" on Feature work-item. I would like an automatic notification to get triggered to the person who has created that Feature if I select accept or reject.

This is basically because we are managing cross-team work, and Team A would have generated the Feature but Team B has been requested to deliver it. However, Team B may not have capacity so the decision to accept or reject lies with Team B.

Ideally, I won't want Team B users to manually put in a comment saying the Feature got accepted or rejected. I would prefer an automatic trigger notifying Team A.

Is that possible please? Thanks.

Azure DevOps

2 answers

Sort by: Most helpful
  1. kagiyama yutaka 4,345 Reputation points
    2026-07-26T23:40:28.13+00:00

    I think Azure DevOps can notify the Creator with a work item‑changed subscription filtered on Decision = Accept or Reject. It only checks the value after the update, so it’ll fire when Team B sets it but won’t detect an actual change. If you need transition‑only behavior, you basically end up using a Service Hook and comparing oldValue/newValue in a Logic App or Function.

    Was this answer helpful?

    0 comments No comments

  2. Christos Panagiotidis 2,741 Reputation points
    2026-07-24T16:17:02.95+00:00

    You can cover the broad case with an Azure DevOps notification subscription rather than Power Automate. In Project settings, open Notifications, create a New subscription for “A work item is changed,” and set the recipient role to the work item’s Creator. Add filters for Work Item Type equals Feature and Decision equals required value, then test with a Feature created by someone else. The limitation is transition logic: a notification filter can evaluate the work item after the change, but it may not express “Decision changed from another value specifically to Accept or Reject” or produce the custom message you need. For that stricter requirement, configure a Work item updated service hook filtered to the Decision field and send it to an Azure Function or Logic App that compares old and new values and emails the creator. This remains within Azure DevOps and Azure services while avoiding a polling flow.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.