Skip to content

Instantly share code, notes, and snippets.

@GuillaumeFalourd
Created August 12, 2021 18:25
Show Gist options
  • Save GuillaumeFalourd/fa4fb83e2d007a4768127e4c041e6941 to your computer and use it in GitHub Desktop.
Save GuillaumeFalourd/fa4fb83e2d007a4768127e4c041e6941 to your computer and use it in GitHub Desktop.
name: Workflow Dispatch
on:
workflow_dispatch:
inputs:
input:
description: "Test"
required: false
default: "World"
jobs:
job1:
runs-on: ubuntu-latest
steps:
- run: echo Hello ${{ github.event.inputs.input }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment