first commit
testing main branch / support-ed25519-key (push) Canceled after 0s
testing main branch / testing-with-env (push) Canceled after 0s
testing main branch / testing ipv6 (push) Canceled after 0s
testing main branch / some special character (push) Canceled after 0s
testing main branch / testing-capturing-output (push) Canceled after 0s
testing main branch / testing-script-stop (push) Canceled after 0s
testing main branch / windows-binary-download (push) Canceled after 0s
testing main branch / testing-script-error (push) Canceled after 0s
testing main branch / default-user-name-password (push) Canceled after 2s
testing main branch / check-ssh-key (push) Canceled after 2s
testing main branch / support-key-passphrase (push) Canceled after 2s
testing main branch / multiple-server (push) Canceled after 2s
testing stable version / default-user-name-password (push) Canceled after 0s
testing stable version / check-ssh-key (push) Canceled after 0s
testing stable version / support-key-passphrase (push) Canceled after 0s
testing stable version / multiple-server (push) Canceled after 0s
testing stable version / support-ed25519-key (push) Canceled after 0s
testing stable version / testing-with-env (push) Canceled after 0s

This commit is contained in:
Kai
2026-09-21 00:21:09 +08:00
commit 9db8179068
29 changed files with 3713 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
---
name: Bug report
about: Create a report to help us improve
title: ""
labels: bug
assignees: appleboy
---
## Describe the bug
A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem.
## Yaml Config
Please post your Yaml configuration file along with the output results.
```yaml
name: remote ssh command
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@v1.2.2
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: whoami
```
## Related environment
Please provide the following information:
1. Your hosting provider information, such as DigitalOcean, Linode, AWS, or GCP.
2. The version information of your host's SSH service.
3. The information from your host's SSH configuration file.
+36
View File
@@ -0,0 +1,36 @@
---
name: Feature request
about: Suggest an idea for this action
title: ""
labels: enhancement
assignees: appleboy
---
## Is your feature request related to a problem?
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
## Describe the solution you'd like
A clear and concise description of what you want to happen.
## Example Yaml Config
If applicable, show how you would expect to use the new feature:
```yaml
- name: executing remote ssh commands
uses: appleboy/ssh-action@v1
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
script: whoami
```
## Additional context
Add any other context about the feature request here. Note that SSH connection
behavior (ciphers, timeouts, proxy, etc.) is implemented in
[drone-ssh](https://github.com/appleboy/drone-ssh) - feature requests for
connection behavior may belong there.