namespacelabs / breakpoint

Add breakpoints to CI: pause, access the workflow with SSH, debug and resume.
https://github.com/namespacelabs/breakpoint
Apache License 2.0
177 stars 5 forks source link

GitHub: don't fail if a user has no SSH keys. #13

Closed attilaolah closed 4 months ago

attilaolah commented 4 months ago

I think this still doesn't work, I get the same error when trying the action from this branch.

Don't merge yet.

attilaolah commented 4 months ago

OK it is working now. The issue was that strings.Split("", "\n") returns []string{""}, but we want an empty slice. strings.FieldsFunc can do that better.