Skip to content

Example Workflow

Example Workflow #8

Workflow file for this run

name: Example Workflow
on:
workflow_dispatch:
inputs:
param1:
description: "Parameter 1"
required: false
default: "default-value"
jobs:
example_job:
runs-on: ubuntu-latest
steps:
- name: Print Input
run: echo ${{ github.event.inputs.param1 }} && sleep 120