Closed bkontur closed 3 months ago
cc: @Bullrich
The parameter continue-on-error: true
seems to be the offender.
We should remove it in both places:
I removed continue-on-error: true
here: https://github.com/polkadot-fellows/runtimes/pull/397 and I will also add a fix.
Maybe fail-fast: false
looks better: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast
definitely, continue-on-error: true
is not good, because tests failed and this pipeline passed :)
@Bullrich I removed continue-on-error: true
and now that pipeline confirmTestPassed
is marked as a skipped:
Test all features / All tests passed (pull_request) Skipped
So, is that confirmTestPassed
marked as a required to block merge in the github configuration?
It is working as intended, well done!
So, is that
confirmTestPassed
marked as a required to block merge in the github configuration?
Yes, we need to mark that test as the required one.
Marked all the "All ****" as required.
E.g. this PR was merged but one pipeline
integration-test (bridge-hub-kusama, bridge-hub-kusama-integration-tests)
failed, how is that possible?