Skip to content

Commit 3492dd9

Browse files
vorporealoz-agent
andcommitted
Replace peer_repo + source_is_private with public_repo + private_repo
Properly update all three workflow files (sync, restack, escalation) to accept public_repo and private_repo as inputs, deriving direction at runtime by comparing github.repository against private_repo. Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent 1f2931a commit 3492dd9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/escalation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ Repo-Sync-Assigned: ${REVIEWER}@${TIMESTAMP}"
103103
echo "PR #${PR_NUMBER}: stuck stack. Dispatching restack."
104104
gh workflow run restack.yml \
105105
-f pr_number="${PR_NUMBER}" \
106-
-f peer_repo="${{ inputs.public_repo }}" \
107-
-f source_is_private="${{ inputs.private_repo }}" \
106+
-f public_repo="${{ inputs.public_repo }}" \
107+
-f private_repo="${{ inputs.private_repo }}" \
108108
-f escalate_to="${ESCALATE_TO}" \
109109
2>/dev/null || echo "Warning: could not dispatch restack for PR #${PR_NUMBER}."
110110
;;

0 commit comments

Comments
 (0)