From adb88b1ffecc908be7f939a2ddaaf64339720769 Mon Sep 17 00:00:00 2001 From: Andrei Jiroh Halili Date: Tue, 22 Feb 2022 00:21:41 +0800 Subject: [PATCH] Add SSH debugging workflow for fun and profit --- .github/workflows/ssh-debugging.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ssh-debugging.yml diff --git a/.github/workflows/ssh-debugging.yml b/.github/workflows/ssh-debugging.yml new file mode 100644 index 0000000..639bf3a --- /dev/null +++ b/.github/workflows/ssh-debugging.yml @@ -0,0 +1,14 @@ +name: SSH Debugging Session + +on: + workflow_dispatch + +jobs: + ssh-debugging-dispatcher: + steps: + - uses: actions/checkout@v2 + - name: Start SSH session + uses: luchihoratiu/debug-via-ssh@main + with: + NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} + SSH_PASS: ${{ secrets.SSH_PASS }}