Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support multiple directories and files #15

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: 'kube-linter'
description: 'Scan directory or file with kube-linter'
description: 'Scan directory(s) or file(s) with kube-linter'
branding:
icon: 'check-circle'
color: 'green'
inputs:
directory:
description: 'Directory or file to scan'
description: 'Directory(s) or file(s) to scan'
mattatcha marked this conversation as resolved.
Show resolved Hide resolved
required: true
config:
description: 'Path to config file'
Expand Down Expand Up @@ -65,4 +65,8 @@ runs:
else
CONFIG="--config ${{ inputs.config }}"
fi
./kube-linter $CONFIG lint "${{ inputs.directory }}" --format "${{ inputs.format }}" | tee "${{ inputs.output-file }}"

# Perform explicit splitting into an array:
read -ra directories <<<"${{ inputs.directory }}"

./kube-linter $CONFIG lint "${directories[@]}" --format "${{ inputs.format }}" | tee "${{ inputs.output-file }}"