Skip to content

Do Something Manually #2

Do Something Manually

Do Something Manually #2

Workflow file for this run

name: Do Something Manually
on:
workflow_dispatch:
inputs:
setting:
type: string
description: Operation
required: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Do The Thing
run: echo "${{ inputs.setting }} accepted, performing something with setting."