Skip to content

Commit

Permalink
Add --no-warnings flag #19 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibiqlik committed May 26, 2021
1 parent c2e8ecc commit c19bd05
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
Expand Down
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c19bd05

Please sign in to comment.