action-docs icon indicating copy to clipboard operation
action-docs copied to clipboard

Error when using workflow_call trigger

Open Jonmacb opened this issue 7 months ago • 0 comments

I receive the below error when running on a workflow file with a trigger of workflow_call. I've tested multiple workflow files and if I change it to another trigger such as push it works as expected. I'm using version 2.4.2.

Cannot read properties of undefined (reading 'replace')

eg.

on:
  workflow_call:
    inputs:
      IMAGEDIR:
        required: true
        type: string
      IMAGENAME:
        required: false
        type: string
        default: ""

Jonmacb avatar Jul 18 '24 10:07 Jonmacb