forked from Burnett01/rsync-deployments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
37 lines (37 loc) · 856 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
34
35
36
37
name: 'PostgreSQL Proxy Action'
description: 'GitHub Action for proxying PostgreSQL over ssh'
author: 'virbyte'
inputs:
postgre_host:
description: 'PostgreSQL host'
required: false
default: 'localhost'
postgre_port:
description: 'PostgreSQL port'
required: false
default: 5432
remote_host:
description: 'Remote SSH host'
required: true
remote_port:
description: 'Remote SSH port'
required: false
default: 22
remote_user:
description: 'Remote username'
required: true
remote_key:
description: 'Keyfile for remote SSH server'
required: true
remote_key_pass:
description: 'Keyfile passphrase'
required: false
default: ''
switches:
description: 'Extra OpenSSH client switches'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'send'