Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/fix-missing-model-bot-issues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,10 @@ jobs:
fetch-depth: 0
ref: ${{ steps.pr.outputs.pull-request-branch }}

- name: Reinstall dependencies after PR branch checkout
if: steps.pr.outputs.pull-request-number != ''
run: pnpm install --frozen-lockfile

- name: Fetch base branch for Codex review
if: steps.pr.outputs.pull-request-number != ''
run: git fetch --no-tags origin main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sync-models.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ jobs:
fetch-depth: 0
ref: ${{ steps.pr.outputs.pull-request-branch }}

- name: Reinstall dependencies after PR branch checkout
if: steps.pr.outputs.pull-request-number != ''
run: pnpm install --frozen-lockfile

- name: Fetch base branch for Codex review
if: steps.pr.outputs.pull-request-number != ''
run: git fetch --no-tags origin main
Expand Down
Loading