Hi @Velizar Danev ,
Thanks for reaching out to Microsoft Q&A.
Make sure that your pipeline's trigger is correctly set up to only respond to the creation of tags. Sometimes, configurations might unintentionally include additional conditions that could lead to multiple triggers.
- Review Tag Formats: Ensure that the tags being pushed are annotated tags rather than lightweight tags. Lightweight tags without messages may not trigger the pipeline correctly. You can create an annotated tag in your git command as follows:
git tag -a <tag_name> -m "Triggering release pipeline" git push origin <tag_name> - Inspect Release Pipeline Details: Look into the details of the release pipeline to find out what is being queued for those empty releases. Sometimes, they could be stemming from configurations in the YAML file or the classic UI that might be triggering undesired behaviors.
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.