on: workflow_dispatch: inputs: input_to_update: description: 'Flake input to update' required: true type: string jobs: test: runs-on: ubuntu-latest steps: - run: echo All Good - run: echo "${{ inputs.input_to_update }}" shell: bash