Forum Discussion
Azure pipeline query
- Sep 27, 2021
Hi @AzureRanger,
It seems that you have a trigger on your pipeline to run them whenever a commit is made.
You can set one of the pipleline trigger to none as
- trigger:none
This will not execute that pipeline automatically. Read more about pipeline triggers.If you want to use triggers to automatically run your pipeline you can use differnet branches on both the Pipelines and set trigger to differnet branches on different pipeline.
Hi @AzureRanger,
It seems that you have a trigger on your pipeline to run them whenever a commit is made.
You can set one of the pipleline trigger to none as
- trigger:none
This will not execute that pipeline automatically. Read more about pipeline triggers.
If you want to use triggers to automatically run your pipeline you can use differnet branches on both the Pipelines and set trigger to differnet branches on different pipeline.