diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml index 891bfd8a1b..67fc66fbbb 100644 --- a/.github/workflows/server-build.yml +++ b/.github/workflows/server-build.yml @@ -190,9 +190,11 @@ jobs: )" echo "$content" >> "$GITHUB_STEP_SUMMARY" # Add a comment to the PR with the list of failed tests. - curl --header "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ + curl --silent --show-error \ + --header "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ --data "$(jq -n --arg body "$content" '$ARGS.named')" \ - "https://api.github.com/repos/$GITHUB_REPOSITORY/issues/${{ inputs.pr }}/comments" + "https://api.github.com/repos/$GITHUB_REPOSITORY/issues/${{ inputs.pr }}/comments" \ + > /dev/null fi exit 1 fi