π 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
When integrating with a complex third-party API, don't try to architect everything upfront. Start by running the integration point and…
1 min readDocker containers expect one process. PID 1 runs, and when it exits, the container stops. But what if you need…
2 min readYou've bumped max_execution_time to 300 seconds in PHP, but your app still throws 504 Gateway Timeout after about a minute….
2 min read
Leave a Reply