Always Stuck at "Unable to find commit in GitHub" and "Waiting for CI to complete"

Description

I have 2 GitHub Actions

  1. “Deploy” workflow that run “Maven Deploy” follows by a “CodeCov Upload”.
  2. “Upload CodeCov” workflow that run “Maven Verify” follows by a “CodeCov Upload”

Each time I successfully run the “Deploy” workflow, CodeCov will show “Unable to find commit in GitHub”, and when I drill into the build on CodeCov, it will show “Waiting for CI to complete”.
I will have to run the “Upload CodeCov” workflow again to fix the “Unable to find commit in GitHub” and “Waiting for CI to complete”

Commit SHAs

Repository

CI/CD or Build URL

“Deploy” workflow: Update version to 1.2.1. · henkelian/im-aop-loggers-spring-boot@03af54d · GitHub

“Upload CodeCov” workflow: Upload to Codecov · henkelian/im-aop-loggers-spring-boot@03af54d · GitHub

Uploader

GitHub Actions:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_USER_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Run Maven Deploy
run: mvn deploy
env:
MAVEN_USERNAME: ${{ github.actor }}
MAVEN_USER_PASSWORD: ${{ secrets.MAVEN_USER_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
- name: Upload Code Coverage
uses: codecov/codecov-action@v1
with:
files: ./target/site/jacoco/jacoco.xml

@andylke I’m currently not seeing those issues for the commit you specified. Can you post another?