You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/sidecar_supply_strategy.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,46 @@ Important boundary:
207
207
208
208
- switch from legacy-allowlist verification toward strict no-LFS enforcement for protected roots
209
209
210
+
### Operational playbook when monthly LFS bandwidth is exhausted (2026-04-09)
211
+
212
+
When local checkout/pull fails due to Git LFS bandwidth exhaustion, use this fallback path:
213
+
214
+
1. Skip LFS smudge for branch switch and sync:
215
+
216
+
```bash
217
+
GIT_LFS_SKIP_SMUDGE=1 git checkout main
218
+
GIT_LFS_SKIP_SMUDGE=1 git pull --ff-only origin main
219
+
```
220
+
221
+
2. Verify that no new protected LFS drift was introduced:
222
+
223
+
```bash
224
+
npm run verify:lfs:policy
225
+
```
226
+
227
+
3. Verify sidecar supply readiness and current network dependency status:
228
+
229
+
```bash
230
+
npm run verify:sidecar:supply -- --json
231
+
```
232
+
233
+
4. Serve docs locally for ops visibility and review:
234
+
235
+
```bash
236
+
npm run docs:site:serve -- -a 127.0.0.1:8013
237
+
```
238
+
239
+
5. Keep CI design stable. Do not redesign default release CI for this emergency flow; use the existing mirror-first release workflow and only use `allow_godot_upstream_fallback=false` through `workflow_dispatch` for mirror-only smoke verification.
240
+
241
+
Execution note validated on 2026-04-09:
242
+
243
+
- PR #1 was merged to `main` and all triggered `main` workflows completed successfully:
0 commit comments