mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-01-18 17:41:58 +01:00
27 lines
708 B
YAML
27 lines
708 B
YAML
name: "ShellCheck"
|
|
author: "Ludeeus <hi@ludeeus.dev>"
|
|
description: "GitHub action for ShellCheck."
|
|
inputs:
|
|
ignore:
|
|
description: 'Paths to ignore when running ShellCheck'
|
|
required: false
|
|
default: ''
|
|
severity:
|
|
description: 'Minimum severity of errors to consider. Options: [error, warning, info, style]'
|
|
required: false
|
|
default: ''
|
|
check_together:
|
|
description: 'Run shellcheck on _all_ files at once, instead of one at a time'
|
|
required: false
|
|
default: ''
|
|
scandir:
|
|
description: 'Directory to be searched for files. Defaults to .'
|
|
required: false
|
|
default: '.'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
branding:
|
|
icon: 'terminal'
|
|
color: 'gray-dark'
|