any86 / Notes

:rocket: 笔记
https://github.com/any86/Notes/issues
28 stars 9 forks source link

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

Open any86 opened 4 years ago

any86 commented 4 years ago
version: 2
jobs:
  build:
    branches:
      only:
          - master

或者

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

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