From 64e4f49b8b255024031f6e9d1e1ebb890d529135 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 18 Dec 2024 09:30:24 -0500 Subject: [PATCH] Still trying to retrieve report results in Markdown... --- .gitea/workflows/branch-sonarscan-pr-merge.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/branch-sonarscan-pr-merge.yml b/.gitea/workflows/branch-sonarscan-pr-merge.yml index 27066ee2..02018d63 100644 --- a/.gitea/workflows/branch-sonarscan-pr-merge.yml +++ b/.gitea/workflows/branch-sonarscan-pr-merge.yml @@ -88,12 +88,13 @@ jobs: echo '${{ steps.quality-gate-check.outputs.quality-gate-result }}' > input.txt sed -E 's/([a-zA-Z0-9_]+):/\\"\1\\":/g; s/:([^",{}\[\]]+)/:"\1"/g' input.txt > fixed.json echo "fixed-json=$(cat fixed.json)" >> $GITHUB_OUTPUT + cat fixed.json | jq - name: Convert JSON report to markdown id: convert-json-to-md uses: parkerbxyz/json-to-markdown-table@v1.1.2 with: - json: ${{ toJSON(steps.json-cleanup.outputs) }} + json: '${{ toJSON(steps.json-cleanup.outputs) }}' - name: Verify markdown output run: |