Getting the Github all checks pass green mark even if CodeCov decreased

Here is how I have CodeCov setup for my packages:

.codecov.yml:

coverage:
  status:
    project:
      default:
        informational: true
    patch:
      default:
        informational: true
comment: false

I believe that the informational flag is what makes it a non-failing check.

1 Like