diff --git a/.github/workflows/evals.yml b/.github/workflows/evals.yml index 162ee8f0..81ba1f7b 100644 --- a/.github/workflows/evals.yml +++ b/.github/workflows/evals.yml @@ -207,8 +207,8 @@ jobs: --jq '.[] | select(.body | startswith("## E2E Evals")) | .id' | tail -1) if [ -n "$COMMENT_ID" ]; then - gh api repos/${{ github.repository }}/issues/comments/$COMMENT_ID \ + gh api "repos/${{ github.repository }}/issues/comments/${COMMENT_ID}" \ -X PATCH -f body="$BODY" else - gh pr comment ${{ github.event.pull_request.number }} --body "$BODY" + gh pr comment "${{ github.event.pull_request.number }}" --body "$BODY" fi