Skip to content

Commit

Permalink
feat: update GitHub action configuration and inputs
Browse files Browse the repository at this point in the history
- Update the name and description of the action
- Update the input descriptions in the action file
- Add the `request_pty` input to the action file
- Update the `runs` and `branding` sections in the action file

Signed-off-by: Bo-Yi Wu <[email protected]>
  • Loading branch information
appleboy committed Jan 7, 2024
1 parent 76075ea commit fd7b720
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 37 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ jobs:
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script_stop: true
request_pty: true
script: |
whoami && echo 'hello world' && touch todo.txt
sudo su - -c "whoami && echo 'hello world' && touch todo.txt"
76 changes: 39 additions & 37 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,76 +1,78 @@
name: 'SSH Remote Commands'
description: 'Executing remote ssh commands'
author: 'Bo-Yi Wu'
name: "SSH Remote Commands"
description: "Executing remote ssh commands"
author: "Bo-Yi Wu"
inputs:
host:
description: 'SSH host address.'
description: "SSH host address."
port:
description: 'SSH port number.'
description: "SSH port number."
default: "22"
passphrase:
description: 'Passphrase for the SSH key.'
description: "Passphrase for the SSH key."
username:
description: 'SSH username.'
description: "SSH username."
password:
description: 'SSH password.'
description: "SSH password."
sync:
description: 'Enable synchronous execution if multiple hosts are involved.'
description: "Enable synchronous execution if multiple hosts are involved."
use_insecure_cipher:
description: 'Include more ciphers by using insecure ciphers.'
description: "Include more ciphers by using insecure ciphers."
cipher:
description: 'Allowed cipher algorithms. If unspecified, a sensible default is used.'
description: "Allowed cipher algorithms. If unspecified, a sensible default is used."
timeout:
description: 'Timeout duration for establishing SSH connection to the host.'
description: "Timeout duration for establishing SSH connection to the host."
default: "30s"
command_timeout:
description: 'Timeout duration for SSH commands execution.'
description: "Timeout duration for SSH commands execution."
default: "10m"
key:
description: 'Content of the SSH private key. For example, the raw content of ~/.ssh/id_rsa.'
description: "Content of the SSH private key. For example, the raw content of ~/.ssh/id_rsa."
key_path:
description: 'Path to the SSH private key file.'
description: "Path to the SSH private key file."
fingerprint:
description: 'SHA256 fingerprint of the host public key.'
description: "SHA256 fingerprint of the host public key."
proxy_host:
description: 'SSH proxy host address.'
description: "SSH proxy host address."
proxy_port:
description: 'SSH proxy port number.'
description: "SSH proxy port number."
default: "22"
proxy_username:
description: 'SSH proxy username.'
description: "SSH proxy username."
proxy_password:
description: 'SSH proxy password.'
description: "SSH proxy password."
proxy_passphrase:
description: 'SSH proxy key passphrase.'
description: "SSH proxy key passphrase."
proxy_timeout:
description: 'Timeout duration for establishing SSH connection to the proxy host.'
description: "Timeout duration for establishing SSH connection to the proxy host."
default: "30s"
proxy_key:
description: 'Content of the SSH proxy private key. For example, the raw content of ~/.ssh/id_rsa.'
description: "Content of the SSH proxy private key. For example, the raw content of ~/.ssh/id_rsa."
proxy_key_path:
description: 'Path to the SSH proxy private key file.'
description: "Path to the SSH proxy private key file."
proxy_fingerprint:
description: 'SHA256 fingerprint of the proxy host public key.'
description: "SHA256 fingerprint of the proxy host public key."
proxy_cipher:
description: 'Allowed cipher algorithms for the proxy. If unspecified, a sensible default is used.'
description: "Allowed cipher algorithms for the proxy. If unspecified, a sensible default is used."
proxy_use_insecure_cipher:
description: 'Include more ciphers for the proxy by using insecure ciphers.'
description: "Include more ciphers for the proxy by using insecure ciphers."
script:
description: 'Commands to be executed.'
description: "Commands to be executed."
script_stop:
description: 'Stop the script after the first failure.'
description: "Stop the script after the first failure."
envs:
description: 'Environment variables to be passed to the shell script.'
description: "Environment variables to be passed to the shell script."
envs_format:
description: 'Flexible configuration for environment value transfer.'
description: "Flexible configuration for environment value transfer."
debug:
description: 'Enable debug mode.'
description: "Enable debug mode."
allenvs:
description: 'pass all environment variable to shell script.'
description: "pass all environment variable to shell script."
request_pty:
description: "Request a pseudo-terminal from the server."
runs:
using: 'docker'
image: 'Dockerfile'
using: "docker"
image: "Dockerfile"

branding:
icon: 'terminal'
color: 'gray-dark'
icon: "terminal"
color: "gray-dark"

0 comments on commit fd7b720

Please sign in to comment.