I am trying to get default value when github action execute by cron job. but it picking empty instead of default value.
Note getting why its not picking default value. Any idea?
Here is my code
workflow_dispatch:
inputs:
typeOfTesting:
type: choice
description: Select Type of Test
default: "stage-test"
required: true
options:
- stage-test-local-All
- stage-test
- stage-test-Uptime
schedule:
- cron: "0 1 * * *"
- cron: "0 11 * * *"
jobs:
WebdriverIO-Automation:
runs-on: ubuntu-latest
steps:
- name: Selection of Testing type
run: |
echo "Branch Name: ${{ github.event.inputs.typeOfTesting }}"
Output:
