Maven Pull Request Sonar Test #2369
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Maven Pull Request Sonar Test | |
| on: | |
| workflow_run: | |
| workflows: [Maven Pull Request Build] | |
| types: | |
| - completed | |
| jobs: | |
| on-success: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_repository.fork == true }} | |
| steps: | |
| - name: Fetch PR number | |
| id: fetch | |
| uses: FraunhoferIOSB/[email protected] | |
| with: | |
| repo-to-check: '${{ github.event.workflow_run.repository.url }}' | |
| name-of-pr: '${{ github.event.workflow_run.head_branch }}' | |
| - uses: actions/checkout@v6 | |
| with: | |
| repository: '${{ github.event.workflow_run.head_repository.full_name }}' | |
| ref: '${{ github.event.workflow_run.head_branch }}' | |
| - name: Test with Sonar | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| run: > | |
| mvn install sonar:sonar -P coverage | |
| -Dsonar.projectKey=FraunhoferIOSB_FAAAST-Service | |
| -Dsonar.pullrequest.key='${{ steps.fetch.outputs.pr-number }}' | |
| -Dsonar.pullrequest.branch='${{ github.event.workflow_run.head_branch }}' | |
| -Dsonar.scm.revision=${{ github.event.workflow_run.head_sha }} | |
| --settings maven-ci-settings.xml | |
| -B | |
| on-failure: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
| steps: | |
| - run: echo 'The triggering workflow failed' |