Skip to content

Commit 0c823b8

Browse files
author
Paul Elliott
committed
Add branding
1 parent f55425a commit 0c823b8

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

action.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
name: 'WireGuard SSH'
22
description: 'SSH over WireGuard'
3-
icon: lock
4-
color: red
3+
branding:
4+
icon: 'lock'
5+
color: 'red'
56
inputs:
6-
peer_port:
7-
description: 'Port of WireGuard peer'
8-
required: false
97
peer_ip:
108
description: 'IP of WireGuard peer'
119
required: true
12-
github_ip:
13-
description: 'Private IP of GitHub peer'
14-
required: false
1510
ssh_public_key:
1611
description: 'SSH public key'
1712
required: true
13+
peer_port:
14+
description: 'Port of WireGuard peer'
15+
required: false
16+
github_ip:
17+
description: 'Private IP of GitHub peer'
18+
required: false
19+
ssh_connection_timeout:
20+
description: 'Seconds to wait for SSH connection'
21+
required: false
22+
session_timeout:
23+
description: 'Seconds to timeout SSH session'
24+
required: false
1825
runs:
1926
using: "composite"
2027
steps:
@@ -25,5 +32,6 @@ runs:
2532
PEER_IP: ${{ inputs.peer_ip }}
2633
GITHUB_IP: ${{ inputs.github_ip }}
2734
SSH_PUBLIC_KEY: ${{ inputs.ssh_public_key }}
28-
35+
SSH_CONNECTION_TIMEOUT: ${{ inputs.ssh_connection_timeout }}
36+
SESSION_TIMEOUT: ${{ inputs.session_timeout }}
2937

0 commit comments

Comments
 (0)