We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07acaea commit d343439Copy full SHA for d343439
.github/workflows/create-or-update-test-pr.yml
@@ -80,9 +80,9 @@ jobs:
80
run: |
81
pr_body=""
82
83
- if [[ -z "${{ inputs.pr_body }}" ]]; then
+ if [[ -n "${{ inputs.pr_body }}" ]]; then
84
pr_body=${{ inputs.pr_body }}
85
- elif [[ -z "${{ github.event.pull_request.html_url }}" ]]; then
+ elif [[ -n "${{ github.event.pull_request.html_url }}" ]]; then
86
pr_body=${{ github.event.pull_request.html_url }}
87
else
88
pr_body=${{ github.server_url }}/${{ github.repository }}/tree/${{ inputs.branch_name }}
0 commit comments