John pushes to master
, Circle builds master
, status of master
is green.
Jane branches off master
, creates branch feature
, changes some files and pushes. Circle builds the PR, and shows feature
and master
merge will be green.
John pushes to master
, breaks the build/creates test conflict that will fail a feature
merge. But…
Jane looks at her PR build. Which… is still green. So she merges and suddenly, master
fails.
How can I make it so that every push to master
will trigger the build for every PR?
Thanks.