We should have a build check show up on PRs.
We have our build check but also an extraneous Cirrus CI check that shows up on PRs and always fails with the message in the title.
See the checks on this PR for example:
https://github.com/riboseinc/rnp/pull/891
Not really sure whats going on here...
馃槙
It's because you have
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_BRANCH =~ 'release/.*' || $CIRRUS_PR != ''
in your .cirrus.yml. So you pushed the banch which caused the error get attached to the SHA and then you opened a PR which led to the green build.
Just deployed a change that fixes this corner case. Sorry for the inconvenience.
Thanks @fkorotkov! That makes sense!
Most helpful comment
Thanks @fkorotkov! That makes sense!