Run Depot CI against a specific branch with --ref
The depot ci run command now supports a --ref flag, allowing you to run CI against a specific branch or ref.
This is especially useful for debugging failing CI on a pull request branch. You can combine --ref with depot ci ssh to get an interactive terminal session into a CI job running your PR's code:
depot ci run --ref my-feature-branch
depot ci run --ref refs/pull/123/headPreviously, depot ci run would always run against the default branch, making it difficult to reproduce and debug PR-specific CI failures.