Corrected missing quote.

This commit is contained in:
2024-12-19 10:18:15 -05:00
parent 6369095c9e
commit f4893e21ff
+24 -13
View File
@@ -59,7 +59,19 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@v4
# Step 1: Run SonarQube Scan # - name: Start Gitea-Sonarqube Bot
# uses: docker://justusbunsi/gitea-sonarqube-bot:v0.3.3
# with:
# # Required inputs for the bot
# args: >
# --sonarqube-url ${{ secrets.SONARQUBE_URL }}
# --sonarqube-token ${{ secrets.SONARQUBE_TOKEN }}
# --git-provider github
# --git-api-url https://api.github.com
# --git-token ${{ secrets.GITHUB_TOKEN }}
# --repository my-org/my-repo
# --pull-request-id ${{ github.event.pull_request.number }}
- name: SonarQube Scan - name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@v4.1.0 uses: sonarsource/sonarqube-scan-action@v4.1.0
env: env:
@@ -105,20 +117,19 @@ jobs:
with: with:
json: ${{ steps.json-cleanup.outputs.conditions }} json: ${{ steps.json-cleanup.outputs.conditions }}
# Step 2: Post SonarQube results as comment (using curl commands and Gitea API) - name: Post SonarQube Results as Comment
# - name: Post SonarQube Results as Comment run: |
# run: | curl ${{ vars.RINOA_GITEA_URL }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.pull_request.number }}/reviews \
# curl ${{ vars.RINOA_GITEA_URL }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.pull_request.number }}/reviews \ -X POST \
# -X POST \ -H 'Accept: application/json' \
# -H 'Accept: application/json' \ -H 'Authorization: token ${{ secrets.BOT_GITEA_TOKEN }}' \
# -H 'Authorization: token ${{ secrets.BOT_GITEA_TOKEN }}' \ -H 'Content-Type: application/json' \
# -H 'Content-Type: application/json' \ -d '{
# -d '{ "body": "SonarQube analysis results:\n\n- Bugs: ${{ env.SONAR_BUGS }}\n- Vulnerabilities: ${{ env.SONAR_VULNERABILITIES }}\n- Code Smells: ${{ env.SONAR_CODE_SMELLS }}\n- Coverage: ${{ env.SONAR_COVERAGE }}%\n- Duplications: ${{ env.SONAR_DUPLICATIONS }}%\n- Quality Gate Status: ${{ env.SONAR_QUALITY_GATE_STATUS }}"
# "body": "SonarQube analysis results:\n\n- Bugs: ${{ env.SONAR_BUGS }}\n- Vulnerabilities: ${{ env.SONAR_VULNERABILITIES }}\n- Code Smells: ${{ env.SONAR_CODE_SMELLS }}\n- Coverage: ${{ env.SONAR_COVERAGE }}%\n- Duplications: ${{ env.SONAR_DUPLICATIONS }}%\n- Quality Gate Status: ${{ env.SONAR_QUALITY_GATE_STATUS }}" }'
# }'
- name: Verify PR number - name: Verify PR number
run: | run: |
echo "PR number: "${{ gitea.pull_request.id }}" echo "PR number: ${{ gitea.pull_request.id }}"
# - name: Post SonarQube Results as Comment # - name: Post SonarQube Results as Comment
# run: | # run: |