Disable Travis-CI for pull requests
travis-ci
Solution
Can't you disable PULL request builds? At least, at the time of this writing, I see that as a choice on a per repo setting:
Problem
I have a project that uses Travis-CI to build and `rsync` a static website. I use the following to ensure that this only occurs in `master`. ``` branches: only: - master ``` However, when someone makes a pull request on the repository, Travis-CI prospectively merges that branch into master and does the build and `rsync`, meaning that anyone could replace the contents of my website with anything by submitting a pull request. Is there a way to prevent Travis-CI from attempting to build pull requests?