π 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
Proxying to an HTTPS backend in Nginx? Don't forget this one directive: location / { proxy_pass https://backend.example.com; proxy_ssl_server_name on; #…
1 min readWhen you have a feature that spans multiple PRs β say, PR #1 builds the core, PR #2 adds an…
2 min readStop writing PR descriptions that read like diary entries. The Problem Most PR descriptions describe the journey. "First I tried…
2 min read
Leave a Reply