Closed aloforte closed 10 months ago
on current master version
I'm attempting to trigger ansible-lint for a project subfolder. But that seems to not change ansible-lint CWD.
I noticed script.sh does:
script.sh
cd "${GITHUB_WORKSPACE}/${INPUT_WORKING_DIRECTORY}" || exit
defined in action.yml as:
INPUT_WORKING_DIRECTORY: ${{ inputs.working_directory }}
instead of the defined input workdir (at line 30)
workdir
Fix should be as simple as changing ${{ inputs.working_directory }} into ${{ inputs.workdir }} at line 59 of action.yml
${{ inputs.working_directory }}
${{ inputs.workdir }}
on current master version
I'm attempting to trigger ansible-lint for a project subfolder. But that seems to not change ansible-lint CWD.
I noticed
script.sh
does:defined in action.yml as:
instead of the defined input
workdir
(at line 30)Fix should be as simple as changing
${{ inputs.working_directory }}
into${{ inputs.workdir }}
at line 59 of action.yml