Launch a Debugging Terminal into GitHub Actions

blog.gripdev.xyz

142 points by martinpeck 21 hours ago


embedding-shape - 17 hours ago

That the entire ecosystem seems to have moved to GitHub Actions is such a loss for productivity. I remember when CircleCI first launched, and you could "Rebuild with SSH" which gave you a bash command to connect to the running instance whenever you wanted, was such a no-brainer, and I'm sure why many of us ended up using CircleCI for years. Eventually CircleCI became too expensive, but I still thought that if other services learnt anything from CircleCI, it would be this single feature, because of the amount of hours it saved thousands of developers.

Lo and behold, when GitHub Actions first launched, that feature was nowhere to be seen, and I knew from that moment on that betting on GitHub Actions would be a mistake, if they didn't launch with such a table-stakes feature. Seems still Microsoft didn't get their thumb out, and wasting countless developer's time with this, sad state of affairs.

Thank you pbiggar for the time we got with CircleCI :) Here's to hoping we'll have CircleCI.V2 appearing at some point in the future, I just know it involves DAGs and "Rebuild with SSH" somehow :)

theknarf - 34 minutes ago

I remember when https://sshx.io/ first launched for this use case

stabbles - 18 hours ago

I'm using tmate for this: https://github.com/mxschmitt/action-tmate

dreslan - 20 hours ago

I love this use of hole punching, also love how the author handled authentication.

I have definitely been in the position of needing to tweak a workflow over and over to get it to work, wasting hours when a terminal into the action would have allowed me to close the loop in minutes. Nice work to the author!

lawrencegripper - 20 hours ago

Author here, this was something I wrote for fun/because I wanted to use it. Happy to answer any questions

whynotmaybe - 19 hours ago

That's my hill to die on : you must have a self hosted agent.

You can have many cloud agents as you wish but you must at least have one where you can remotely connect.

It has saved me hours of troubleshooting and polluting "workflow v1.3.56_final_should_work_2" commits

t_tsonev - 13 hours ago

Why SSH to the build agent when you can run your actions locally using the excellent https://github.com/nektos/act

baby_souffle - 18 hours ago

There are many tools and techniques like this. Not a nock against this tool, just an observation that we seemingly need these tools.

Is there no better way, GitHub?

cyberax - 14 hours ago

I solved it by adding a simple Tailscale action to handle failure. It creates an ephemeral instance and waits for connections for 3 minutes. Then it loops while there's an active SSH session present.

It's that simple: https://gist.github.com/Cyberax/9edbde51380bf7e1b298245464a2... and it saved me _hours_ of debug time.

I've moved all my CI/CD to use Taskfiles inside a Docker container since then, so my local environment can replicate the CI/CD environment up to the GITHUB_TOKEN. Still, being able to poke around Github builders is great.

x0rg - 13 hours ago

Wow that's great, I'm definitely going to try it. This guy knows what he is doing.

axm__ - 17 hours ago

I was looking at frp for this. Setup is a bit more involved but you don't need a browser terminal: https://github.com/rgl/frp-github-actions-reverse-shell

stets - 16 hours ago

I want this for Gitlab so badly

franktankbank - 17 hours ago

When I see stuff like this, I think wow that is cool. But then I think about doing it myself and I get nervous about security ramifications. I don't know enough myself to know if author knows the right way ya know??

msie - 17 hours ago

I gave GH actions a chance when our org moved from Bamboo but I still hate it. I think i have to do more to get a build going.