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 a2519fc commit aba9773Copy full SHA for aba9773
.github/workflows/merge-acm-flow.yaml
@@ -268,7 +268,8 @@ jobs:
268
if: github.event_name != 'pull_request' && failure()
269
run: |
270
PR_URL=$(gh pr list --json url --jq '.[0].url' --repo ${{ inputs.downstream }} --state open | grep -i konflux)
271
- if [ ! -z "$PR_URL" ]; then
+ echo "PR_URL=$PR_URL"
272
+ if [ ! -n "$PR_URL" ]; then
273
echo "konflux_pr_exists=1" >> $GITHUB_OUTPUT
274
else
275
echo "konflux_pr_exists=0" >> $GITHUB_OUTPUT
0 commit comments