-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (34 loc) · 805 Bytes
/
action.yml
File metadata and controls
35 lines (34 loc) · 805 Bytes
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
34
35
name: 'SSH Socket Setup'
description: 'Setup an SSH socket with a private key'
author: Sourcetoad
branding:
color: green
icon: dollar-sign
inputs:
host:
description: 'remote hostname'
required: true
port:
description: 'ssh port'
required: false
socket-path:
description: 'path at which to create socket'
required: false
default: ''
key:
description: 'ssh private key'
required: true
lifetime:
description: 'how many seconds to keep socket live'
required: false
default: '600'
purge-entry:
description: 'Whether to purge the host entry from known_hosts prior to addition.'
required: false
default: 'true'
outputs:
socket-path:
description: 'path at which socket was created'
runs:
using: 'node24'
main: 'dist/index.js'