Is this possible? I want to disable PR decorations but keep branch analysis

Sonarqube Version:
Enterprise Edition Version 8.9.9 (build 56886)

Is it possible to still do a branch analysis but keep PR decorations?

We’re currently setting the following when running the Sonarqube plugin and was wondering if there’s some property that will disable PR decorations by any chance if we don’t provide it but will still make branch analysis work.

PR_ARGS=" -Dsonar.pullrequest.key=${PR_NUMBER} -Dsonar.pullrequest.branch=${BRANCH_NAME} -Dsonar.pullrequest.base=${GITHUB_BASE_REF} -Dsonar.pullrequest.github.repository=${GITHUB_REPOSITORY} -Dsonar.pullrequest.provider=github"

Hey there.

You should be able remove PR decoration by removing (-Dsonar.pullrequest.github.repository=${GITHUB_REPOSITORY} -Dsonar.pullrequest.provider=github) and making sure nothing is set under Project Settings > General Settings > Pull Request Decoration.

And, just to make sure we understand, why do you want to turn off PR Decoration?