This section in deploy-to-pages.yaml seems to be missing the inputs key outlined in the workflow reference?
|
workflow_dispatch: |
|
git_ref_to_deploy: |
|
description: The git reference to deploy |
|
required: false |
|
type: string |
|
default: gh-pages |
Example:
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
print_tags:
description: 'True to print to STDOUT'
required: true
type: boolean
tags:
description: 'Test scenario tags'
required: true
type: string
environment:
description: 'Environment to run tests against'
type: environment
required: true
This section in
deploy-to-pages.yamlseems to be missing theinputskey outlined in the workflow reference?k8s-device-plugin/.github/workflows/deploy-to-pages.yaml
Lines 31 to 36 in 8d8e5ed
Example: