Skip to content

Commit

Permalink
Create manual_trigger.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
luchihoratiu authored Oct 20, 2020
1 parent 1d11f9a commit 4ae3ed2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/manual_trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Manually trigger a SSH Session

on:
workflow_dispatch:
inputs:
os:
description: 'OS'
required: true
ssh_password:
description: 'SSH password'
required: true

jobs:
start_ssh_session:
runs-on: ${{ github.event.inputs.os }}
name: Start ssh session
steps:

- name: Start SSH session
uses: luchihoratiu/debug-via-ssh@main
with:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
SSH_PASS: ::add-mask::${{ github.event.inputs.ssh_password }}

0 comments on commit 4ae3ed2

Please sign in to comment.