Notes icon indicating copy to clipboard operation
Notes copied to clipboard

如何让circle ci只执行特定分支

Open any86 opened this issue 4 years ago • 0 comments

version: 2
jobs:
  build:
    branches:
      only:
          - master

或者

version: 2
jobs:
  build:
    branches:
      ignore:
          - xxx
          - xxx

或者 提交信息中包含"[ci skip]"

any86 avatar Apr 28 '20 03:04 any86