From dd3f9709c2d1968c3a7abcc540ae2c316bdf6510 Mon Sep 17 00:00:00 2001 From: himself65 Date: Thu, 23 Mar 2023 13:47:52 -0500 Subject: [PATCH] ci: fix build.yml env variable --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce8695b00b..7d42142135 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,7 +79,7 @@ jobs: head_sha: "${{ needs.pull_request.outputs.pr_sha }}", name: "Build on Pull Request", status: "in_progress", - details_url: ${{ env.BUILD_URL }}, + details_url: "${{ env.BUILD_URL }}", output: { title: "Build on Pull Request", summary: "Please check the build result ${{ env.BUILD_URL }}", @@ -203,7 +203,7 @@ jobs: head_sha: "${{ needs.pull_request.outputs.pr_sha }}", name: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})", status: "in_progress", - details_url: ${{ env.BUILD_URL }}, + details_url: "${{ env.BUILD_URL }}", output: { title: "E2E Test (${{ matrix.shard }}/${{ strategy.job-total }})", summary: "Please check the e2e test result ${{ env.BUILD_URL }}", @@ -314,7 +314,7 @@ jobs: head_sha: "${{ needs.pull_request.outputs.pr_sha }}", name: "Unit Test", status: "in_progress", - details_url: ${{ env.BUILD_URL }}, + details_url: "${{ env.BUILD_URL }}", output: { title: "Unit Test", summary: "Please check the unit test result ${{ env.BUILD_URL }}",