Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ui-preview-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,17 @@ jobs:
actions: read

steps:
# claude-code-action requires a valid git working tree (it configures
# git user before running). We only drive Playwright at the Vercel
# preview URL — we never execute repo code — so checking out the base
# branch is sufficient and avoids running any fork-supplied code under
# pull_request_target.
- name: Checkout base branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.repository.default_branch }}
persist-credentials: false

- name: Resolve PR metadata + body
id: pr
uses: actions/github-script@v9
Expand Down
Loading