Yaml Lint action
Find a file
2019-12-17 12:50:34 +01:00
.github/workflows Rename file 2019-12-17 12:48:47 +01:00
.gitignore Initial commit 2019-10-16 10:26:48 +02:00
action.yml Use published image for faster runs 2019-12-17 12:47:12 +01:00
Dockerfile Add action, dockerfile, entrypoint 2019-10-16 10:43:28 +02:00
entrypoint.sh Need a change to trigger the build, doh. 2019-12-17 12:50:34 +01:00
LICENSE Initial commit 2019-10-16 10:26:48 +02:00
README.md Add docs 2019-10-16 11:10:34 +02:00

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 with values.yaml recursively

Optional parameters

  • config_file - Path to custom configuration
  • config_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