Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Confirm Run

Confirm Run #125

Workflow file for this run

name: Confirm Run
on:
workflow_dispatch:
inputs:
choice_name:
options:
- choice1
- choice2
- choice3
type: choice
jobs:
confirm_run:
name: "Confirm run: ${{ github.event.inputs.choice_name }}"
runs-on: ubuntu-latest
steps:
- name: Echo choice
run: echo "${{ github.event.inputs.choice_name }}";