From a99ee178ca48ae3a7db9b47909df75852e8e10b3 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 5 Nov 2025 10:02:44 -0500 Subject: [PATCH] Adding output for PR URL. --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 156c3b9..a09dfba 100644 --- a/action.yml +++ b/action.yml @@ -35,6 +35,9 @@ outputs: pr_number: description: The PR index/number that exists or was created 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 }} runs: using: "composite" @@ -115,7 +118,7 @@ runs: echo "PR Created 🎫 (PR \#$created_pr_index)" echo "created_pr_index=$created_pr_index" >> $GITHUB_OUTPUT - echo "created_pr_url=$created_pr_url" >> $GITHUB_OUTPUT + echo "pr_url=$created_pr_url" >> $GITHUB_OUTPUT - name: Set unified PR number output id: set-pr-output