Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/manual-detached-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
with:
limit-access-to-actor: true
detached: true
connect-timeout-seconds: 60
- run: |
echo "A busy loop"
for value in $(seq 10)
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ jobs:

By default a failed step will cause all following steps to be skipped. You can specify that the ssh session only starts if a previous step [failed](https://docs.github.com/en/actions/learn-github-actions/expressions#failure).

<!--
{% raw %}
-->
```yaml
name: CI
on: [push]
Expand All @@ -129,6 +132,9 @@ jobs:
if: ${{ failure() }}
uses: Warpbuilds/action-debugger@v1.3
```
<!--
{% endraw %}
-->

## Use registered public SSH key(s)

Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ inputs:
description: "In detached mode, the workflow job will continue while the ssh session is active"
required: false
default: "false"
connect-timeout-seconds:
description: 'How long in seconds to wait for a connection to be established'
required: false
default: "600"
tmate-server-host:
description: "The hostname for your tmate server (e.g. ssh.example.org)"
required: false
Expand Down
Loading