We want to build only when pushes happen on a certain branch, not every branch.
How to set this up?
FYI we’re building our Android app (Gradle), pulling from github.
We want to build only when pushes happen on a certain branch, not every branch.
How to set this up?
FYI we’re building our Android app (Gradle), pulling from github.
I believe this code is what you are looking for 
general:
branches:
only:
- master # list of branches to build
- /feature-.*/ # or regexes