Watchgha

1 · Ned Batchelder · March 13, 2023, 11:46 p.m.
I wrote a simple thing to watch the progress of GitHub Actions: watchgha. I started by using gh run list, and tailoring the output, but that required running the command obsessively to see the changes. Then I tried gh run watch, but I didn’t like the way it worked. You had to pick one action to watch, but my branch has two actions that run automatically, and I need to know when both are done. Plus, it lists all of the steps, which makes my complex action matrix fill more than a screen, so I c...