From 8645423f732bde874c20076c6dccca8d037c8c69 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 27 Apr 2026 16:10:27 -0400 Subject: [PATCH] Text sanitizing. --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4fe4f5e..b239043 100644 --- a/action.yml +++ b/action.yml @@ -88,7 +88,8 @@ runs: --fields index,head \ --output simple \ | egrep "${{ github.ref_name }}" \ - | awk '{print $1}') + | awk '{print $1}'\ + | tr -d '#') echo "pr_number=$pr_number" >> $GITHUB_OUTPUT - name: Skip PR Creation @@ -134,7 +135,7 @@ runs: -d "${PR_DESCRIP}" \ -a ${{ inputs.assignee }} \ -L "${{ inputs.pr-label }}" \ - --output simple | awk '{print $1}') + --output simple | awk '{print $1}' | tr -d '#') created_pr_url=$(tea pr ls --state open \ -r ${{ github.repository }} \