Error AtlasError Documentation and Resolution

GitHub Actions reusable workflow input is missing a required type

Required if input is defined for the on.workflow_call keyword.

GitHub Actions reusable workflow inputs must declare a type. If the type is missing or invalid, the workflow definition is not valid.

on.workflow_call.inputs.<input_id>.typeconfiguration
Required if input is defined for the on.workflow_call keyword.
  • A reusable workflow defines an input but omits its type.
  • The input type uses an unsupported value.
  • A workflow was copied from a different syntax example and left partially configured.
  1. Define a supported type for every workflow_call input.
  2. Use one of the types GitHub supports for reusable workflow inputs.
  3. Validate the workflow after editing to catch schema mismatches before relying on it.
GitHub Docs: Workflow syntax for GitHub Actions
GitHub Actions reusable workflow input type required | Error Atlas