Add debug option to ssh-debug workflow

This commit is contained in:
Daniel A. Wozniak 2025-02-01 02:50:52 -07:00 committed by Daniel Wozniak
parent 3597c8d5df
commit 63f8d5792f

View file

@ -19,6 +19,11 @@ on:
type: string
required: True
description: Your public key for ssh access.
debug:
required: false
type: bool
default: true
description: Run sshd with debug enabled.
@ -36,3 +41,4 @@ jobs:
with:
public_key: ${{ inputs.public_key }}
offer: ${{ inputs.offer }}
debug: ${{ inputs.debug }}