but, the problem was although it might be the analyzed PR, we need to force the sonar to also decorate it and not the merge commit.
is that make sense?
Weāre running sonarcloud in a github action but are having something that sounds like the same issue. Iām unsure how to get something like -Dsonar.scm.revision=${{ github.event.pull_request.head.sha }} added to the action. What would I change in the action code below that would implement this work around.
@dlwire I see you are using sonarsource/sonarcloud-github-action, and indeed it was not possible to pass extra parameters as in the workaround. We merged just now an improvement to the action to make this possible, so now you can do like this:
Weāre working on an improvement to use ${{ github.event.pull_request.head.sha }} by default as the sha1 to decorate. This should lead to more stable experience. I will post an update here when itās rolled out.
On the other hand, ensuring the working tree is the HEAD of the PR with uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }} is out of our control. Itās recommended for consistent results, but our experience shows no problems in practice even without that.
Longer version
Weāve made some progress understanding the issue. Currently we use the sha1 in GITHUB_SHA to decorate as a baseline. Then, we detect if that value is the special merge commit automatically generated by GitHub, in which case we fall back to using the head of the PR. This seems to work most of the time, in fact Iām not able to fabricate an example where it doesnāt. But as all the posters in this thread can attest, this clearly does not always work.
We used to believe that GITHUB_SHA is always the head of the PR, but according to the docs, thatās not the case when the trigger event is pull_request. In this case, the value is āthe last merge commitā of the branch, which happens to be a merge commit automatically generated by GitHub.
By making ${{ github.event.pull_request.head.sha }} the new default, we expect a more stable behavior.
The workaround to use ${{ github.event.pull_request.head.sha }} by default as the sha1 to decorate is now live. Please let us know in this thread if you still experience the missing Check.
I tried it on couple of days ago and it seems that we didnāt see any missing checks since then. Iām going to keep an eye on it and let you know if the issue reappears
iām reviewing all repos and make the needed changes after your recent fixes from Sonar side.
as discussed and agreed iām checking out the specific ref ( actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }}).
now on the sonarqube command iām not providing the scm.revision paraemter, since youāve mentioned its now using the head.sha by default.
Sonar analyses the PR properly, and it also decorated on the PR.
BUT, the status check is still on pending state.
We are also having the same issue, but using Azure DevOps Pipelines. One of our private repos is failing to notify GitHub for the status check. Another private repo is functioning as expected. In both cases the Sonar analysis is performed, Sonar bot comments to the Pull Request accordingly, but one of the two fails to set the status check. Everything was functioning normally for our pull request build performed at 1:14 PM UTC on Wednesday September 2nd, but every pull request since has failed to notify. For both of our repos the SHA of the merge commit is checked out.
We are experiencing this on all of repos. We see the comment and the checks are being run and passing, but we are not getting the status check. This has just happened recently, and is currently blocking our PRs.
I am using Azure DevOps Pipelines, not GitHub Actions. AzDO does have a checkout task, but I see no way to control which SHA is used. The built-in AzDO vars provide a single variable (Build.SourceVersion) for grabbing the commit ID and it points to whatever SHA was used to trigger the pipeline run; the merge commit in my case. I donāt see a way to extract any more information from the PR or its underlying branch from AzDO.
There was a recent issue of missing Checks for a few days, unrelated to this one. Probably thatās what you were experiencing too. I close this thread now.