VSTS / TFS - 构建如何指定不应触发CI构建的提交消息?

时间:2017-07-13 16:38:53

标签: build continuous-integration azure-devops azure-pipelines azure-pipelines-build-task

我想不要为我推送到VSTS的一些提交触发CI。

我可以在提交消息中指定哪些内容阻止CI不会触发?

1 个答案:

答案 0 :(得分:4)

如何在脚本推送时避免触发CI构建?

git merge origin/features/hello-world -m "Merge to master ***NO_CI***"添加到您的提交消息中。例如,hideLeftSideMenuBool

文档:https://www.visualstudio.com/en-us/docs/build/scripts/git-commands

相关问题