I’m trying to create a Trigger in DevOps, which we’ve not done before. Struggling to understand what the syntax needs to be. We need the Trigger to be driven by a Tag. The below don’t work. Any ideas please?
You can create triggers filtering work items that satisfy specific conditions.
Example 1
Trigger all work items whose type is “Task”:
[Work Item Type]``='Task'
WIQL - Work Item Query Language
Triggers on Azure DevOps are based on WIQL - Work Item Query Language.
When writing Azure DevOps Node triggers, you don’t need the entire query, just the conditions found in the WHERE clause of the WIQL to filter the work items.
Triggers all the Work Items whose type is “Task” and project is “BatCave” and is assigned to “Bruce Wayne” and State is “Doing” and Area Path is “BatCave\Operation” and has “azure” as one of its tags.