From 856a0a597aff8243804acfb618598287ea841e7e Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 5 Nov 2025 15:01:42 -0500 Subject: [PATCH] Adding PR URL as output. --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 2304028..b736acc 100644 --- a/action.yml +++ b/action.yml @@ -37,7 +37,7 @@ outputs: value: ${{ steps.set-pr-output.outputs.pr_number }} pr_url: description: The URL for the PR index/number that exists or was created - value: ${{ steps.pr-creation.outputs.pr_url }} + value: ${{ steps.set-pr-output.outputs.pr_url }} runs: using: "composite" @@ -140,8 +140,9 @@ runs: run: | if [ -n "$EXISTING_PR" ]; then echo "pr_number=$EXISTING_PR" >> $GITHUB_OUTPUT - echo "pr_url=$" + echo "pr_url=$EXISTING_URL" >> $GITHUB_OUTPUT else echo "pr_number=$CREATED_PR" >> $GITHUB_OUTPUT + echo "pr_url=$CREATED_URL" >> $GITHUB_OUTPUT fi