Hi Folks, I am following below Azure Devops
Learning Module
https://docs.microsoft.com/en-us/learn/modules/create-a-build-pipeline/9-clean-up-environment
In docs it says: To disable the pipeline:
1. In Azure Pipelines, navigate to your pipeline.
2. Select Edit. From the menu in the upper corner, select Settings:
But I am not able to see these settings.
Can anyone help ?
Top comments (6)
In docs it says: To disable the pipeline:
In Azure Pipelines, navigate to your pipeline.
Select Edit. From the menu in the upper corner, select Settings:
A window pops up titled Pipeline settings
Here you get the disable the "Processing of new run request"
Thank you 😄, This worked. This stopped the build pipeline from running the Job. Hope this saves my free build minutes.
if your goal is to disable builds for every check-in; the better approach is to disable CI. That way your pipeline is not disabled. And you can go manually build when you please.
hey so ensure you have navigated to the pipeline, e.g on the left menu, click menu. Hover over over a recently run pipeline and a
...
menu will appear on the right. Selectedit
. On the top-right click a...
menu. Selectsettings
. Now you have a menu optionsEnabled
,Paused
,Disabled
. SelectDisabled
.You'll need to delete the file within your repo, aka
azure-pipelines.yml
😄, Thank you Jay, I will try this option in future. But for now I used a option in
Azure Devops
Portal, As said by below comment: dev.to/mnaseem/comment/pjnnHope this saves my free build minutes.