nrkno / github-workflow-terraform-config

Reusable GitHub workflow for validating a Terraform configuration repository.
GNU General Public License v3.0
5 stars 0 forks source link

Mismatch in input definition and implementation. #142

Closed Dsverre closed 3 months ago

Dsverre commented 6 months ago

In .github/workflows/workflow.yaml the input-definition of terraform-ignore-files exists on line 16, but in the step Remove ignored files on line 141 there is a reference to:

env:
          IGNORE_FILES: ${{ inputs.ignore-files }}

This leads to the step being skipped. I guess it should be changed to:

env:
          IGNORE_FILES: ${{ inputs.terraform-ignore-files }}