Skip to content

_Test Workflow

_Test Workflow #8

Workflow file for this run

name: _Test Workflow
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Run Command
run: echo "Test"
# on:
# workflow_dispatch:
# inputs:
# runsOn:
# description: 'Runs-On: Runner'
# required: true
# default: 'self-hosted'
# type: string
# command:
# description: 'run: Command'
# required: true
# default: 'echo "test"'
# type: string
# jobs:
# build:
# runs-on: ${{ inputs.runsOn }}
# steps:
# - name: Run Command
# run: ${{ inputs.command }}