"Re-run all checks" in GitHub PR does not work

We integrated sonarcloud in our jenkins pipeline using:

/bin/sonar-scanner -Dsonar.pullrequest.key=${value} -Dsonar.pullrequest.branch=${value} -Dsonar.pullrequest.base=${value}  -Dsonar.login=${value} 
-Dsonar.scm.revision=${value} -Dsonar.github.repository=${value} -Dsonar.github.oauth=${value} -Dsonar.pullrequest.provider=GitHub -Dsonar.pullrequest.github.repository=${value} -Dsonar.projectVersion=${value} 

It is working and creating the “check” in the GitHub PR. But if we click on “Re-run all checks” it will queue the check but never execute it - even after two hours.


  • ALM used: GitHub
  • CI system used: Jenkins
  • Languages of the repository: TypeScript

Hi @petschni,

Indeed, action on “re-run all checks” has no effect, actually we haven’t find a proper way to re-trigger the analysis.
We aim to at least make that clear for GitHub users.

Cheers,

We’re hitting this as well. We commit to a PR and there is a false positive which creates a red status check in Github. How can we re-run just the status check? Currently the only workaround is to do an empty commit and re-run all of CI which is noisy and wasteful just to simply re-run the sonarcloud status check to address a single false positive. thanks.