Files
ZFScoresCheck/.github/workflows/demo.yml
T
2024-07-17 18:58:32 +08:00

18 lines
365 B
YAML

name: Example Workflow
on:
workflow_dispatch:
inputs:
integer_input:
description: 'Enter an integer value'
required: true
default: 10
type: integer
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- name: Print integer input
run: echo "Integer input is ${{ github.event.inputs.integer_input }}"