You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/release-package.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,8 @@ jobs:
65
65
echo "Main is already up to date with stable; skipping PR."
66
66
exit 0
67
67
fi
68
-
pr_number=$(gh pr create --base main --head stable --title "chore: sync stable release to main" --body "Automated PR to merge the latest stable changes back into main." --json number --jq '.number')
68
+
pr_url=$(gh pr create --base main --head stable --title "chore: sync stable release to main" --body "Automated PR to merge the latest stable changes back into main.")
69
+
pr_number=$(echo "$pr_url" | grep -oE '[0-9]+$')
69
70
echo "Created PR #$pr_number to sync stable into main."
70
71
else
71
72
echo "PR #$pr_number already open to sync stable into main."
0 commit comments