name: Deploy Using Reusable (Example) "on": workflow_dispatch: inputs: runner: description: Runner label (single label) required: true default: ubuntu-latest image: description: Image to deploy required: true jobs: deploy: uses: ./.github/workflows/deploy-compose.reusable.yml with: runner: ${{ inputs.runner }} image: ${{ inputs.image }}