-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathaction.yml
33 lines (33 loc) · 1.12 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
31
32
33
name: 'Debugging with ssh'
description: 'Debug your GitHub Actions Environment interactively by using SSH'
author: 'Lari Hotari'
branding:
icon: 'terminal'
runs:
using: 'node16'
main: 'lib/index.js'
inputs:
GITHUB_TOKEN:
description: Github Token
default: ${{ github.token }}
required: false
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: ''