You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if it could call out when a composite action or a reusable workflow is being called without all the required inputs (Not sure if this is considered beyond the scope of actionlint)
Example, running lint on the files below would cause an error since the parent workflow doesn't pass a value for the required second-input input:
Workflow file:
jobs:
parent-workflow:
name: Do the build
uses: ./.github/workflows/_reusable_workflow.yml
with:
first-input: some-value
on:
workflow_call:
inputs:
first-input:
required: true
type: string
description: the first input
second-input:
required: true
type: string
description: the second input
The text was updated successfully, but these errors were encountered:
It would be great if it could call out when a composite action or a reusable workflow is being called without all the required inputs (Not sure if this is considered beyond the scope of actionlint)
Example, running lint on the files below would cause an error since the parent workflow doesn't pass a value for the required
second-input
input:Workflow file:
./.github/workflows/_reusable_workflow.yml contents:
The text was updated successfully, but these errors were encountered: