Skip to content

Commit d343439

Browse files
committed
CI: fix platform-test PR body message
1 parent 07acaea commit d343439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create-or-update-test-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
run: |
8181
pr_body=""
8282
83-
if [[ -z "${{ inputs.pr_body }}" ]]; then
83+
if [[ -n "${{ inputs.pr_body }}" ]]; then
8484
pr_body=${{ inputs.pr_body }}
85-
elif [[ -z "${{ github.event.pull_request.html_url }}" ]]; then
85+
elif [[ -n "${{ github.event.pull_request.html_url }}" ]]; then
8686
pr_body=${{ github.event.pull_request.html_url }}
8787
else
8888
pr_body=${{ github.server_url }}/${{ github.repository }}/tree/${{ inputs.branch_name }}

0 commit comments

Comments
 (0)