mirror of
https://github.com/ibiqlik/action-yamllint.git
synced 2024-11-21 13:51:05 -05:00
Yaml Lint action
.gitignore | ||
action.yml | ||
Dockerfile | ||
entrypoint.sh | ||
LICENSE | ||
README.md |
GitHub YAMLlint
This action executes yamllint
(https://github.com/adrienverge/yamllint) against file(s) or folder
Usage
Required parameters
file_or_dir
- Enter file/folder (space speparated), wildcards accepted. Examples:file1.yaml
file1.yaml file2.yaml
.
- run against all yaml files in current directory recursively./**/*values.yaml
- run against all files that end withvalues.yaml
recursively
Optional parameters
config_file
- Path to custom configurationconfig_data
- Custom configuration (as YAML source)format
- Format for parsing output [parsable,standard]strict
- Return non-zero exit code on warnings as well as errors
Example usage in workflow
name: Yaml Lint
on: [push]
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: yaml-lint
uses: ibiqlik/action-yamllint@master
with:
file_or_dir: ./**/*val*.yaml
config_file: .yamllint.yml