From 1005030ad443fee3f917cbcab9a51f9c7ef80f37 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Wed, 5 Nov 2025 09:59:02 -0500 Subject: [PATCH] Adding output for PR URL. --- action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/action.yml b/action.yml index b6b9eae..156c3b9 100644 --- a/action.yml +++ b/action.yml @@ -107,8 +107,15 @@ runs: --output simple \ | awk '{print $1}') + created_pr_url=$(tea pr ls --state open \ + -r ${{ github.repository }} \ + -f index,url \ + -o simple \ + | egrep '${created_pr_index}' | awk '{print $2}') + 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 - name: Set unified PR number output id: set-pr-output