From 17084206813b9b645d6878d105ab972a462ee6d8 Mon Sep 17 00:00:00 2001 From: Aabishkar KC Date: Mon, 22 Jan 2024 17:01:17 -0500 Subject: [PATCH] Update smoke test workflow --- .github/workflows/ui_smoke_tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ui_smoke_tests.yml b/.github/workflows/ui_smoke_tests.yml index a4c619e9e86..4fbaaea6581 100644 --- a/.github/workflows/ui_smoke_tests.yml +++ b/.github/workflows/ui_smoke_tests.yml @@ -92,7 +92,7 @@ jobs: Workflow Run: [${{ github.workflow }}](${{ format('{0}/{1}/actions/runs/{2}', github.server_url, github.repository, github.run_id) }}) Check: [$env:CHECK_NAME](${{ steps.test_report.outputs.url_html }}) "@ - $pr_comment | Out-File -FilePath $env:GITHUB_OUTPUT -Append + $pr_comment | Out-File -FilePath pr_comment.md - name: Find Comment if: env.PR_NUMBER != '' uses: peter-evans/find-comment@v2 @@ -107,13 +107,11 @@ jobs: uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ env.PR_NUMBER }} - body: | - ${{ steps.create_comment.outputs.pr_comment }} + body-path: pr_comment.md - name: Update comment if: env.PR_NUMBER != '' && steps.find_comment.outputs.comment-id != '' uses: peter-evans/create-or-update-comment@v3 with: comment-id: ${{ steps.find_comment.outputs.comment-id }} edit-mode: replace - body: | - ${{ steps.create_comment.outputs.pr_comment }} + body-path: pr_comment.md