Add --no-warnings flag #19 (#20)

This commit is contained in:
Ilir Bekteshi 2021-05-26 08:56:08 +02:00 committed by GitHub
parent c2e8eccd22
commit c19bd0523a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 3 deletions

View file

@ -18,7 +18,15 @@ jobs:
trailing-spaces:
level: warning
- name: lint all (but pass)
- name: lint all - no warnings (continue on error)
continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
no_warnings: true
- name: lint all (continue on error)
continue-on-error: true
uses: ./
with:

View file

@ -19,8 +19,9 @@ Simple as:
- `file1.yaml`
- `file1.yaml file2.yaml`
- `kustomize/**/*.yaml mychart/*values.yaml`
- `format` - Format for parsing output [parsable,standard,colored,github,auto] (default: parsable)
- `strict` - Return non-zero exit code on warnings as well as errors [true,false] (default: false)
- `format` - Format for parsing output `[parsable,standard,colored,github,auto] (default: parsable)`
- `strict` - Return non-zero exit code on warnings as well as errors `[true,false] (default: false)`
- `no_warnings` - Output only error level problems `[true,false] (default: false)`
**Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it.

View file

@ -20,6 +20,10 @@ inputs:
description: 'Return non-zero exit code on warnings as well as errors'
required: false
default: "false"
no_warnings:
description: 'Output only error level problems'
required: false
default: "false"
runs:
using: 'composite'
@ -32,6 +36,7 @@ runs:
INPUT_CONFIG_DATA: ${{ inputs.config_data }}
INPUT_FORMAT: ${{ inputs.format }}
INPUT_STRICT: ${{ inputs.strict }}
INPUT_NO_WARNINGS: ${{ inputs.no_warnings }}
branding:
color: blue

View file

@ -18,6 +18,10 @@ if [[ "$INPUT_STRICT" == "true" ]]; then
options+=(-s)
fi
if [[ "$INPUT_NO_WARNINGS" == "true" ]]; then
options+=(--no-warnings)
fi
# Enable globstar so ** globs recursively
shopt -s globstar
# Use the current directory by default