The gh command-line tool is pretty great. Here's a #git alias (put it in ~/.gitconfig) to see the status of GitHub Actions running on the current branch:
actions = "!f() { gh run list --branch $(git rev-parse --abbrev-ref HEAD); }; f"
Now "git actions" will show whether your #github CI is passing for the current branch.