GitHub Actions trigger and shell gotchas Two recurring CI pitfalls showed up during assethold issue execution (#2448 follow-up after #2442): 1. can silently suppress the verification run A valid fix may land on without triggering the workflow you need for proof. Observed case: - deleting pathological tree entries fixed a Windows checkout blocker - but did not auto-run because the workflow only watched: - - - - - - - the workflow file itself - since the change touched only paths, there was no automatic CI run Operational rule: 1. Before relying on post-push CI evidence, inspect the workflow's…