π 1 minute read
Joel Clermont shared a great tip today about the GitHub CLI.
Instead of constantly refreshing the Actions tab in your browser, you can use:
“`bash
gh run watch –exit-status
“`
This gives you a live checklist in your terminal. The `–exit-status` flag is the keyβit makes the CLI exit with a non-zero code if the run fails, which is perfect for chaining commands like:
“`bash
gh run watch –exit-status && say “Deploying!”
“`
Daryle De Silva
VP of Technology
11+ years building and scaling web applications. Writing about what I learn in the trenches.
Related Articles
Running multiple background processes in a Docker container and trying to figure out which one is logging what? If you're…
2 min readWhen running local LLMs with Ollama, you can set num_ctx to control the context window size. But there's a ceiling…
2 min readDocker PHP Extensions: Build-Time vs Runtime Installation When working with PHP in Docker, you have two choices for installing extensions:…
1 min read
Leave a Reply