From 9b2eb90758c5622dc33001f08a738f460da40721 Mon Sep 17 00:00:00 2001 From: Steven Enamakel <31011319+senamakel@users.noreply.github.com> Date: Fri, 22 May 2026 17:37:37 -0700 Subject: [PATCH] chore(shortcuts): self-assign PR in pnpm review fix (#2510) --- scripts/shortcuts/review/fix.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/shortcuts/review/fix.sh b/scripts/shortcuts/review/fix.sh index b5628a442..3a445414d 100755 --- a/scripts/shortcuts/review/fix.sh +++ b/scripts/shortcuts/review/fix.sh @@ -38,6 +38,10 @@ done require "$agent" sync_pr "$pr" +if [ "${REVIEW_AUTO_ASSIGN:-1}" = "1" ]; then + gh_assign_self_pr "$pr" "$REVIEW_REPO_RESOLVED" +fi + template="$here/prompts/fix.md" if [ ! -f "$template" ]; then echo "[review] missing prompt template: $template" >&2