Status Checks Hanging

Please check the troubleshooting guide before creating a ticket.
All fields below are required.

Description

I’m working on the projector project, and I was working with both project and patch status checks. At some point, the status checks started just hanging and not reporting back. I tried uninstalling and re-installing the app, but with no success. Here is my codecov.yml:

# Validate changes
# cat codecov.yml | curl --data-binary @- https://codecov.io/validate

comment:  on # enable pull request comment
coverage:
  range: 80..100
  round: down # round down to the precision point
  precision: 2
  status:
    project: # compare project coverage against the base of pr
      default:
        target: 90%  # min coverage ratio to be considered a success
        threshold: 0%  # allow coverage to drop by X%
        base: auto
    patch:  # provides an indication on how well the pull request is tested
      default:
        target: 70% # min coverage ratio to be considered a success

Commit SHAs

Please include the commit SHA(s)

Repository

projector

CI/CD or Build URL

feat: Create repo command by tbarlow12 · Pull Request #49 · projector-cli/projector (github.com)

Uploader

GitHub Actions

Codecov Output

  _____          _
 / ____|        | |
| |     ___   __| | ___  ___ _____   __
| |    / _ \ / _` |/ _ \/ __/ _ \ \ / /
| |___| (_) | (_| |  __/ (_| (_) \ V /
 \_____\___/ \__,_|\___|\___\___/ \_/
                              Bash-20210115-cec3c92


==> git version 2.29.2 found
==> curl 7.58.0 (x86_64-pc-linux-gnu) libcurl/7.58.0 OpenSSL/1.1.1g zlib/1.2.11 libidn2/2.0.4 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
Release-Date: 2018-01-24
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS IDN IPv6 Largefile GSS-API Kerberos SPNEGO NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets HTTPS-proxy PSL 
==> GitHub Actions detected.
->  Issue detecting commit SHA. Please run actions/checkout with fetch-depth > 1 or set to 0
    project root: .
--> token set from env
    Yaml found at: codecov.yml
==> Running gcov in . (disable via -X gcov)
==> Python coveragepy not found
==> Searching for coverage reports in:
    + .
    -> Found 3 reports
==> Detecting git/mercurial file structure
==> Reading reports
    + ./coverage/clover.xml bytes=67465
    + ./coverage/coverage-final.json bytes=150403
    + ./coverage/lcov.info bytes=25992
==> Appending adjustments
    https://docs.codecov.io/docs/fixing-reports
    -> No adjustments found
==> Gzipping contents
        28K	/tmp/codecov.m4r0oF.gz
==> Uploading reports
    url: https://codecov.io
    query: branch=repo-command&commit=eb6e4bb17f701153666660ae4d8baff4bf5fe9dd&build=499755424&build_url=http%3A%2F%2Fgithub.com%2Fprojector-cli%2Fprojector%2Factions%2Fruns%2F499755424&name=&tag=&slug=projector-cli%2Fprojector&service=github-actions&flags=&pr=49&job=Quality%20Gates&cmd_args=n,F,Q,Z
->  Pinging Codecov
https://codecov.io/upload/v4?package=github-action-20210115-cec3c92&token=secret&branch=repo-command&commit=eb6e4bb17f701153666660ae4d8baff4bf5fe9dd&build=499755424&build_url=http%3A%2F%2Fgithub.com%2Fprojector-cli%2Fprojector%2Factions%2Fruns%2F499755424&name=&tag=&slug=projector-cli%2Fprojector&service=github-actions&flags=&pr=49&job=Quality%20Gates&cmd_args=n,F,Q,Z
->  Uploading to
https://storage.googleapis.com/codecov/v4/raw/2021-01-20/E41A3FDA52BFFEE61BD52B88454184B6/50cd745ac7894c56950b7eaed27f9dc104eb5b7e/3acb262f-9611-4124-bd39-a6ee054babf9.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=GOOG1EQX6OZVJGHKK3633AAFGLBUCOOATRACRQRQF6HMSMLYUP6EAD6XSWAAY%2F20210120%2FUS%2Fs3%2Faws4_request&X-Amz-Date=20210120T225153Z&X-Amz-Expires=10&X-Amz-SignedHeaders=host&X-Amz-Signature=9b80eb911614ea5f5e39f192c557b233c94a1ad4b03d26d9e3195bef7a6c184a
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 27428    0     0  100 27428      0   166k --:--:-- --:--:-- --:--:--  166k
    -> View reports at https://codecov.io/github/projector-cli/projector/commit/50cd745ac7894c56950b7eaed27f9dc104eb5b7e

Expected Results

Status checks to post to GitHub PR

Actual Results

Status checks hang and block merging of PR

@tbarlow12 , there is an error message

->  Issue detecting commit SHA. Please run actions/checkout with fetch-depth > 1 or set to 0

You will need to update this in your GitHub Actions workflow. Let me know if that fixes your issue!