Skip to content

Commit cadcec5

Browse files
committed
chore: fix integration tests
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent 53a330b commit cadcec5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sonar.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
3939
run: |
4040
if [ '${{github.event.workflow_run.event}}' == 'pull_request' ]; then
41-
PR_NUMBER=$(<build/PR)
42-
BASE_REF=$(<build/base_ref)
43-
HEAD_REF=$(<build/head_ref)
41+
PR_NUMBER=$(<prInfo/PR)
42+
BASE_REF=$(<prInfo/base_ref)
43+
HEAD_REF=$(<prInfo/head_ref)
4444
./gradlew sonarqube -Dsonar.pullrequest.base=$BASE_REF -Dsonar.pullrequest.branch=$HEAD_REF -Dsonar.pullrequest.key=$PR_NUMBER -Dsonar.pullrequest.provider=GitHub -Dsonar.pullrequest.github.repository=${{github.repository}}
4545
else
4646
./gradlew sonarqube

0 commit comments

Comments
 (0)