Show HN: A little go program to git tag the next tag you need

5 points by andrewfromx a day ago

I got sick of watching my github actions page waiting for a step to complete before tagging the next step. You set three env vars:

os.Getenv("GITHUB_TOKEN")

os.Getenv("WORKFLOW_POLLER_OWNER")

os.Getenv("WORKFLOW_POLLER_REPO")

And then run ./workflow-poller and it will keep polling github api (ListRepositoryWorkflowRuns) for your current `git rev-parse HEAD` value and status == "completed".

https://github.com/andrewarrow/workflow-poller/

oh_fiddlesticks an hour ago

Would you mind giving a more detailed use case for this? I feel it might be useful to me but for lack of understanding on my part.