Is there a way to not run builds for specific fork/branch combinations? We have a pretty standard setup of everyone having their own forks of our main repo and we really don’t want to build on branches like forked_repo/master
or forked_repo/staging
but we do want to build on main_repo/master
and main_repo/staging
.
Don't run builds for specific fork/branches
actionnick
#1
levlaz
#2
You can whitelist and blacklist branches like this: https://circleci.com/docs/configuration/#branches
actionnick
#3
I understanding the white/blacklisting of branches. But I also want the ability to white/blacklist forkname/branch combinations. For instance I only want to build master
if it’s the root repo, not on any other fork. This seems like a very useful feature and this lack of fine grain control is something my company is taking into account when evaluating CIs.