Cancel automated builds, leave manual trigger only

I think restricting only to master should do the trick:

general:
  branches:
    only:
      - master # list of branches to build

This will also still build pull requests to master

ref: https://circleci.com/docs/1.0/parameterized-builds/

1 Like