Skip to content

Shell - -

Shell - - #2

Workflow file for this run

name: Shell
run-name: Shell - ${{ inputs.cmd }} - ${{ inputs.runner }}
on:
pull_request:
workflow_dispatch:
inputs:
cmd:
description: "Command"
required: true
runner:
description: "Runner"
required: true
type: choice
options:
- self-hosted
jobs:
build:
runs-on: ${{ inputs.runner || 'lark' }}
steps:
- name: Run Command
run: ${{ inputs.cmd }}