-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
30 lines (30 loc) · 1.07 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: "Debug with ssh"
description: "This GitHub Action enables direct interaction with the host system running your GitHub Actions via SSH"
author: "Owen Ou"
branding:
icon: "terminal"
color: "purple"
runs:
using: "node20"
main: "lib/index.js"
inputs:
limit-access-to-actor:
description: "If only the public SSH keys of the user triggering the workflow should be authorized"
required: false
default: "false"
limit-access-to-users:
description: "If only the public SSH keys of the listed GitHub users should be authorized"
required: false
default: ""
upterm-server:
description: "upterm server address (required), supported protocols are ssh, ws, or wss."
required: true
default: "ssh://uptermd.upterm.dev:22"
ssh-known-hosts:
description: "Content for ~/.ssh/known_hosts file on the server"
required: false
default: ""
wait-timeout-minutes:
description: "Integer number of minutes to wait for user to connect before shutting down server. Once a user connects, the server will stay up."
required: false
default: ""