Compare commits

...

1 Commits

Author SHA1 Message Date
Robin Newhouse 08f0495c81 fix: send repo_url to JetBrains tests for fork PR support
Fixes fork PR test failures by sending the head repository clone URL
to the intellij-plugin workflow, enabling it to clone from the correct
repository instead of failing to find fork branches in cline/cline.

Related: cline/intellij-plugin#642
2025-12-30 22:03:54 -08:00
@@ -56,7 +56,8 @@ jobs:
"action": "${{ github.event.action }}",
"sha": "${{ github.event.pull_request.head.sha }}",
"pr_title": $PR_TITLE,
"pr_url": "${{ github.event.pull_request.html_url }}"
"pr_url": "${{ github.event.pull_request.html_url }}",
"repo_url": "${{ github.event.pull_request.head.repo.clone_url }}"
}
}
EOF