forked from mxschmitt/action-tmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 1004 Bytes
/
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 tmate and ZSH'
description: 'Debug your GitHub Actions Environment interactively by using SSH or a Web shell'
branding:
icon: terminal
author: 'Max Schmitt'
runs:
using: 'node12'
main: 'lib/index.js'
inputs:
sudo:
description: 'If apt should be executed with sudo or without'
required: false
default: 'true'
limit-access-to-actor:
description: 'If only the public SSH keys of the user triggering the workflow should be authorized'
required: false
default: 'false'
tmate-server-host:
description: 'The hostname for your tmate server'
required: false
default: ''
tmate-server-port:
description: 'The port for your tmate server'
required: false
default: ''
tmate-server-rsa-fingerprint:
description: 'The RSA fingerprint for your tmate server'
required: false
default: ''
tmate-server-ed25519-fingerprint:
description: 'The ed25519 fingerprint for your tmate server'
required: false
default: ''