How to set a Mercurial VCS build trigger for TeamCity that ignores label operations

后端 未结 2 1318
情深已故
情深已故 2020-12-08 22:47

I am trying to setup a build trigger for TeamCity using Mercurial as the VCS. Right now the trigger looks like:

+:/**

This trigger get fire

2条回答
  •  佛祖请我去吃肉
    2020-12-08 23:20

    Adding the trigger pattern:

    -:/.hgtags
    

    filters out the .hgtags file from the build trigger. This is the file that gets modified when the source is tagged by TeamCity. When this file is excluded tagging operations will not fire the build trigger.

提交回复
热议问题