Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
futabooo committed Dec 15, 2024
1 parent ae8c840 commit 4081b8f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/playwright-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,7 @@ jobs:
PR_NUMBER: ${{ github.event.number }}
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
run: |
gh pr comment "${PR_NUMBER}" --edit-last \
--body "Playwright tests report deployed to ${DEPLOYMENT_URL}"
comment_body="Playwright tests report deployed to ${DEPLOYMENT_URL}"
# workaround https://github.com/cli/cli/issues/6790
gh pr comment "${PR_NUMBER}" --body "$comment_body" --edit-last || \
gh pr comment "${PR_NUMBER}" --body "$comment_body"

0 comments on commit 4081b8f

Please sign in to comment.