Skip to content

Main Workflow Dispatch #43

Main Workflow Dispatch

Main Workflow Dispatch #43

name: Main Workflow Dispatch
on:
workflow_dispatch:
inputs:
breadth:
type: number
default: 2
max-depth:
type: number
default: 1
website-url:
type: string
default: "https://kzmkgze3v46fyc6paipj.lite.vusercontent.net/login"
username:
type: string
password:
type: string
jobs:
generate:
uses: ./.github/workflows/generate.yml
with:
dispatchId: manual-${{ github.run_id }}
primaryId: ${{ github.run_id }}

Check failure on line 25 in .github/workflows/manual-generate.yml

View workflow run for this annotation

GitHub Actions / Main Workflow Dispatch

Invalid workflow file

The workflow is not valid. .github/workflows/manual-generate.yml (Line: 25, Col: 18): Invalid input, primaryId is not defined in the referenced workflow.
breadth: ${{ fromJson(inputs.breadth) }}
max-depth: ${{ fromJson(inputs.max-depth) }}
website-url: ${{ inputs.website-url }}
login_username: ${{ inputs.username }}
login_password: ${{ inputs.password }}
secrets:
TESTDRIVER_API_KEY: ${{ secrets.TESTDRIVER_API_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}