Skip to content

Commit db008ee

Browse files
committed
ci: skip LFS in Copilot cloud agent checkout
The Copilot cloud agent job fails during its internal clone because app/assets/windows/arm64/OpenConsole.pdb is a 30 MB LFS object that does not exist on the fork's LFS server (upstream LFS objects are not copied to forks). The agent only works on source files (Rust, UI, config) and has no need for Windows ARM64 debug symbols. Adding .github/copilot/setup-steps.yml with lfs: false tells the Copilot runtime to skip LFS hydration on checkout, removing the failure path entirely. Ref: 63cdd88
1 parent cb99d00 commit db008ee

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/copilot/setup-steps.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
steps:
2+
- name: Checkout repository (skip LFS)
3+
uses: actions/checkout@v4
4+
with:
5+
fetch-depth: 1
6+
lfs: false

0 commit comments

Comments
 (0)