From 0697866ca78753fea1cb177d300584ec5c484e85 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 5 Nov 2025 11:18:27 -0500 Subject: [PATCH] Fixing value for pr_url. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index a09dfba..99a1284 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.set-pr-output.outputs.pr_url }} + value: ${{ steps.pr-creation.outputs.pr_url }} runs: using: "composite" @@ -116,7 +116,7 @@ runs: -o simple \ | egrep '${created_pr_index}' | awk '{print $2}') - echo "PR Created 🎫 (PR \#$created_pr_index)" + echo "PR Created 🎫 (PR \#$created_pr_index) - $created_pr_url" echo "created_pr_index=$created_pr_index" >> $GITHUB_OUTPUT echo "pr_url=$created_pr_url" >> $GITHUB_OUTPUT