Tags trigger not working in azure pipelines
问题 I have the exact same pipeline in two different branches of the same repository, stage and prod . I'd like the pipeline on branch stage to run when a tag starting with stage@ is created (e.g. stage@1.0.1 ); similarly, I'd like the pipeline on branch prod to run when a tag starting with prod@ is created (e.g. prod@1.0.1 ). In branch stage , trigger is defined like this: # .azure-pipelines.yml [refs/branches/stage] trigger: tags: include: - stage@* In branch prod , trigger is defined like this: