Hi, I am working to enable pull request decoration. I am having Sonarqube Developer EditionVersion 8.9 (build 43852) and my project repo is in Bitbucket Cloud. The scanning is planned to trigger by Jenkins instead of using Bitbucket pipeline.
So far what i had done are,
-
Follow “Adding Pull Request decoration to Bitbucket Cloud” in Bitbucket Cloud Integration | SonarQube Docs
-
Run below command to scan (want to try call command manually before go for Jenkins plugin)
dotnet sonarscanner begin /k:“myproject” /d:sonar.login=“xxxxxxxx” /d:sonar.host.url=“http://localhost:9000” /d:sonar.pullrequest.branch=“mypullrequest” /d:sonar.pullrequest.base=master /d:sonar.pullrequest.key=1dotnet build
dotnet sonarscanner end /d:sonar.login=“xxxxxxx”
The scan run successfully and found security hotspots. But I didn’t see comment added in my pull request. It has SonarQube in the report section,
When clicked, it show below.
Is this feature of pull request decoration supposed to? It looks different from this video Atlassian Bitbucket Pull Request/Branch Decoration with SonarQube - YouTube
Can i get some detail guides to setup pull request decoration?