mirror of
https://github.com/hadolint/hadolint-action.git
synced 2025-02-07 07:11:07 +01:00
16 lines
334 B
YAML
16 lines
334 B
YAML
|
name: 'Hadolint'
|
||
|
description: 'Action that runs Hadolint Dockerfile linting tool'
|
||
|
author: 'Bruno Paz'
|
||
|
inputs:
|
||
|
dockerfile:
|
||
|
description: 'The path to the Dockerfile to lint'
|
||
|
default: 'Dockerfile'
|
||
|
runs:
|
||
|
using: 'docker'
|
||
|
image: 'Dockerfile'
|
||
|
args:
|
||
|
- ${{ inputs.dockerfile }}
|
||
|
branding:
|
||
|
icon: 'layers'
|
||
|
color: 'purple'
|