Hello,
Welcome to Microsoft Q&A,
You can also tell Azure Pipelines to skip running a pipeline that a push would normally trigger. Just include [skip ci]
in the message or description of any of the commits that are part of a push, and Azure Pipelines will skip running CI for this push. You can also use any of the following variations.
-
[skip ci]
or[ci skip]
-
skip-checks: true
orskip-checks:true
-
[skip azurepipelines]
or[azurepipelines skip]
-
[skip azpipelines]
or[azpipelines skip]
-
[skip azp]
or[azp skip]
-
***NO_CI***
Consideration:
- The
[skip ci]
or[ci skip]
keywords must be present in the most recent commit for the skip to take effect. - This only works if the trigger in your
azure-pipelines.yml
includes something like:
trigger:
branches:
include:
- main
And your PR is targeting that trigger branch (main
, for example).
Please Upvote and Accept the answer if it helps!!